> 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-backsplash-change.md).

# AI Backsplash Change

Virtually changes the kitchen or bathroom backsplash material — tile, marble, mosaic, and more.

***

### Input Slots

| Slot key                             | Description                   |
| ------------------------------------ | ----------------------------- |
| `tool-backsplash-change-input-image` | The kitchen or bathroom photo |

### Widgets

| Widget slug                              | Purpose                        | Select |
| ---------------------------------------- | ------------------------------ | ------ |
| `widget-space-tool-backsplash-change`    | Room type (Kitchen, Bathroom…) | Single |
| `widget-material-tool-backsplash-change` | Backsplash material            | 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-backsplash-change",
    "asset_map": {
      "tool-backsplash-change-input-image": "6878b6882ecd619eab1f886c"
    },
    "widgets": [
      {
        "slug": "widget-space-tool-backsplash-change",
        "item_slugs": ["item-kitchen-widget-space-tool-backsplash-change"]
      },
      {
        "slug": "widget-material-tool-backsplash-change",
        "item_slugs": ["item-grey-marble-widget-material-tool-backsplash-change"]
      }
    ]
  }'
```
