> 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-virtual-restaging.md).

# AI Virtual Restaging

Replaces the existing furniture in an already-staged room with a completely new style, without removing the furniture manually first.

***

### Input Slots

| Slot key                             | Description                      |
| ------------------------------------ | -------------------------------- |
| `tool-virtual-restaging-input-image` | The staged room photo to restyle |

### Widgets

| Widget slug                           | Purpose      | Select |
| ------------------------------------- | ------------ | ------ |
| `widget-space-tool-virtual-restaging` | Room type    | Single |
| `widget-style-tool-virtual-restaging` | 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-virtual-restaging",
    "asset_map": {
      "tool-virtual-restaging-input-image": "6878b6882ecd619eab1f886c"
    },
    "widgets": [
      {
        "slug": "widget-space-tool-virtual-restaging",
        "item_slugs": ["item-bedroom-widget-space-tool-virtual-restaging"]
      },
      {
        "slug": "widget-style-tool-virtual-restaging",
        "item_slugs": ["item-modern-widget-style-tool-virtual-restaging"]
      }
    ]
  }'
```
