> For the complete documentation index, see [llms.txt](https://doc.aihomedesign.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://doc.aihomedesign.com/tool-refrence/ai-interior-designer.md).

# AI Interior Designer

Fully redesigns a room by replacing walls, floors, furniture, and décor according to your chosen style and colour palette.

***

### Input Slots

| Slot key                           | Description                |
| ---------------------------------- | -------------------------- |
| `tool-interior-design-input-image` | The room photo to redesign |

### Widgets

| Widget slug                         | Purpose        | Select |
| ----------------------------------- | -------------- | ------ |
| `widget-space-tool-interior-design` | Room type      | Single |
| `widget-style-tool-interior-design` | Design style   | Single |
| `widget-color-tool-interior-design` | Colour palette | Single |

### Example Request

```bash
curl --location 'https://api.aihomedesign.com/v3/process' \
  --header 'x-api-key: <your_api_key>' \
  --header 'Content-Type: application/json' \
  --data '{
    "order_id": "6936dc8b2bddf58d9e8137bd",
    "tool": "tool-interior-design",
    "asset_map": {
      "tool-interior-design-input-image": "6936dc8a2bddf58d9e8137bc"
    },
    "widgets": [
      {
        "slug": "widget-space-tool-interior-design",
        "item_slugs": ["item-bedroom-widget-space-tool-interior-design"]
      },
      {
        "slug": "widget-style-tool-interior-design",
        "item_slugs": ["item-modern-widget-style-tool-interior-design"]
      },
      {
        "slug": "widget-color-tool-interior-design",
        "item_slugs": ["item-earthy-neutrals-widget-color-tool-interior-design"]
      }
    ]
  }'
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://doc.aihomedesign.com/tool-refrence/ai-interior-designer.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
