BrightShotBrightShot API
Image Generation

Remove furniture

Remove all furniture from a room image, leaving an empty space.

POST
/api/v1/empty-room
AuthorizationBearer <token>

API key in format: bs_live_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

In: header

image_urlstring

URL of the furnished room image

Formaturi

Response Body

application/json

application/json

application/json

application/json

curl -X POST "https://api.bright-shot.com/api/v1/empty-room" \  -H "Content-Type: application/json" \  -d '{    "image_url": "https://example.com/furnished-room.jpg"  }'
{
  "success": true,
  "request_id": "pred_abc123xyz",
  "message": "Generation started. Poll /api/v1/prediction/pred_abc123xyz for results."
}
{
  "error": "image_url is required"
}
{
  "error": "Invalid API key"
}
{
  "error": "Insufficient credits",
  "credits_remaining": 0
}