Remove Furniture AI
1 tokenToolsRemove all furniture from a room
Overview
Remove Furniture AI strips all furniture and decor from a room photo, leaving you with a clean, empty space. The AI fills in the floor, walls, and background naturally. Useful for virtual staging workflows — clear the room first, then use Fill Room AI to stage it in a new style.
Image input
Endpoint
POST /api/v1/generatebash
curl -X POST https://roomai.com/api/v1/generate \
-H "Authorization: Bearer rai_live_your_api_key" \
-H "Content-Type: application/json" \
-d '{"model": "removefurniture", ...}'Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
model | string | Required | Must be "removefurniture". removefurniture |
image | string | Required | URL of the furnished room photo. |
format | string | Optional | Output format. Default: png |
Request Example
json
{
"model": "removefurniture",
"image": "https://example.com/furnished-room.jpg"
}Response
Success (200)
json
{
"status": "success",
"result": {
"image_url": "https://storage.googleapis.com/...",
"model": "removefurniture",
"tokens_used": 1,
"processing_time_ms": 4500
}
}Error
json
{
"status": "error",
"error": {
"code": "INSUFFICIENT_TOKENS",
"message": "Not enough tokens",
"required": 1,
"balance": 0
}
}Code Examples
cURL
bash
curl -X POST https://roomai.com/api/v1/generate \
-H "Authorization: Bearer rai_live_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"model": "removefurniture",
"image": "https://example.com/furnished-room.jpg"
}'JavaScript / Node.js
javascript
const response = await fetch("https://roomai.com/api/v1/generate", {
method: "POST",
headers: {
"Authorization": "Bearer rai_live_your_api_key",
"Content-Type": "application/json",
},
body: JSON.stringify({
"model": "removefurniture",
"image": "https://example.com/furnished-room.jpg"
}),
});
const data = await response.json();
if (data.status === "success") {
console.log("Image URL:", data.result.image_url);
console.log("Tokens used:", data.result.tokens_used);
} else {
console.error("Error:", data.error.message);
}Python
python
import requests
response = requests.post(
"https://roomai.com/api/v1/generate",
headers={
"Authorization": "Bearer rai_live_your_api_key",
"Content-Type": "application/json",
},
json={
"model": "removefurniture",
"image": "https://example.com/furnished-room.jpg"
},
)
data = response.json()
if data["status"] == "success":
print("Image URL:", data["result"]["image_url"])
print("Tokens used:", data["result"]["tokens_used"])
else:
print("Error:", data["error"]["message"])Tips
- 1Works best with rooms where the floor and walls are partially visible — the AI uses these as context to fill in the gaps.
- 2Combine with Fill Room AI for a complete restaging workflow: remove existing furniture, then fill with a new style.
- 3The AI also removes decor like paintings, rugs, and curtains — not just furniture.