Interior Design
Redesign, stage, and visualize any room with AI
Transform any room photo with AI-powered interior design. Redesign spaces in dozens of styles, virtually stage empty rooms with furniture and decor, strip a room back to bare walls, or convert hand-drawn sketches into photorealistic renders. Ideal for homeowners, real estate agents, and designers.
Redesign a furnished room in a chosen style. Supports prompt-guided redesign and style-transfer mode. Works on living rooms, bedrooms, kitchens, offices, and more.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "interior-design",
"skill": "redesign_room",
"input": {
"image_url": "https://example.com/living-room.jpg",
"style": "minimalist",
"room_type": "living-room"
}
}' \
https://api.toolrouter.com/v1/tools/callVirtually stage an empty room by adding furniture, decor, and accessories in a chosen style. Ideal for real estate listings and interior design presentations.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "interior-design",
"skill": "stage_room",
"input": {
"image_url": "https://example.com/empty-living-room.jpg",
"style": "contemporary",
"room_type": "living-room"
}
}' \
https://api.toolrouter.com/v1/tools/callRemove all furniture, decor, and personal items from a room photo, leaving bare walls, floors, and architectural features. Useful for real estate, renovation planning, and before-and-after comparisons.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "interior-design",
"skill": "empty_room",
"input": {
"image_url": "https://example.com/furnished-living-room.jpg",
"room_type": "living-room"
}
}' \
https://api.toolrouter.com/v1/tools/callConvert a hand-drawn sketch or floor-plan drawing into a photorealistic interior render. Great for architects, interior designers, and homeowners visualizing renovation concepts.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "interior-design",
"skill": "sketch_to_render",
"input": {
"image_url": "https://example.com/living-room-sketch.jpg",
"style": "modern",
"room_type": "living-room"
}
}' \
https://api.toolrouter.com/v1/tools/callRedesign outdoor spaces like gardens, patios, facades, and pool areas in a chosen style. Works with exterior photos of homes, yards, and commercial outdoor areas.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "interior-design",
"skill": "outdoor_design",
"input": {
"image_url": "https://example.com/backyard.jpg",
"style": "zen",
"space_type": "outdoor-garden"
}
}' \
https://api.toolrouter.com/v1/tools/callChange the wall color in a room photo while keeping all furniture and decor intact. Specify any color by name or description to see how a new paint color would look.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "interior-design",
"skill": "paint_walls",
"input": {
"image_url": "https://example.com/living-room.jpg",
"color": "sage green",
"room_type": "living-room"
}
}' \
https://api.toolrouter.com/v1/tools/callAdjust the lighting conditions in a room photo. Change from day to evening, add warm ambient glow, simulate natural daylight, or create moody atmosphere — while keeping the room layout unchanged.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "interior-design",
"skill": "change_lighting",
"input": {
"image_url": "https://example.com/living-room.jpg",
"lighting": "warm evening with soft lamp glow",
"room_type": "living-room"
}
}' \
https://api.toolrouter.com/v1/tools/callPlace specific furniture items into a room photo. Describe what to add and where — the AI will position it naturally in the space, matching existing style and proportions.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "interior-design",
"skill": "add_furniture",
"input": {
"image_url": "https://example.com/office.jpg",
"furniture": "a tall wooden bookshelf against the wall",
"room_type": "home-office"
}
}' \
https://api.toolrouter.com/v1/tools/callInsert people into a room scene for lifestyle visualization. Describe who to add and what they are doing — the AI places them naturally with realistic proportions and lighting.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "interior-design",
"skill": "add_people",
"input": {
"image_url": "https://example.com/living-room.jpg",
"people": "a couple sitting together on the sofa, relaxing",
"room_type": "living-room"
}
}' \
https://api.toolrouter.com/v1/tools/callIncrease the resolution of a room image up to 4K. Use after any other skill to get a higher-quality output for print, presentations, or listings.
curl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{
"tool": "interior-design",
"skill": "upscale_room",
"input": {
"image_url": "https://example.com/redesigned-room.jpg",
"scale": 2
}
}' \
https://api.toolrouter.com/v1/tools/callQuick Start
claude mcp add --transport stdio \
--env TOOLROUTER_API_KEY=YOUR_API_KEY \
toolrouter -- npx -y toolrouter-mcpcurl -H "Authorization: Bearer $TOOLROUTER_API_KEY" \
-d '{"tool":"interior-design","skill":"redesign_room","input":{}}' \
https://api.toolrouter.com/v1/tools/call