> 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-under-construction.md).

# AI Under Construction

Visualises what an unfinished or under-construction space will look like when complete, based on your chosen room type and design style.

***

### Input Slots

| Slot key                              | Description               |
| ------------------------------------- | ------------------------- |
| `tool-under-construction-input-image` | The unfinished room photo |

### Widgets

| Widget slug                            | Purpose          | Select |
| -------------------------------------- | ---------------- | ------ |
| `widget-space-tool-under-construction` | Target room type | Single |
| `widget-style-tool-under-construction` | Design style     | 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": "6878b6d52ecd619eab1f886d",
    "tool": "tool-under-construction",
    "asset_map": {
      "tool-under-construction-input-image": "6878b6882ecd619eab1f886c"
    },
    "widgets": [
      {
        "slug": "widget-space-tool-under-construction",
        "item_slugs": ["item-kitchen-widget-space-tool-under-construction"]
      },
      {
        "slug": "widget-style-tool-under-construction",
        "item_slugs": ["item-contemporary-widget-style-tool-under-construction"]
      }
    ]
  }'
```
