> 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-day-to-dusk.md).

# AI Day to Dusk

Converts a daytime exterior photo into a dramatic dusk or twilight scene. You can choose the sky style and optionally apply shadow removal or lawn touch-up.

***

### Input Slots

| Slot key                       | Description                |
| ------------------------------ | -------------------------- |
| `tool-day-to-dusk-input-image` | The daytime exterior photo |

### Widgets

| Widget slug                                   | Purpose                                        | Select    |
| --------------------------------------------- | ---------------------------------------------- | --------- |
| `widget-sky-style-tool-day-to-dusk`           | Sky / lighting mood                            | Single    |
| `widget-day-to-dusk-options-tool-day-to-dusk` | Optional edits (shadow removal, lawn touch-up) | **Multi** |

> `widget-day-to-dusk-options-tool-day-to-dusk` is **multi-select** — you can combine multiple optional effects.

### 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-day-to-dusk",
    "asset_map": {
      "tool-day-to-dusk-input-image": "6878b6882ecd619eab1f886c"
    },
    "widgets": [
      {
        "slug": "widget-sky-style-tool-day-to-dusk",
        "item_slugs": ["item-twilight-with-cloud-widget-sky-style-tool-day-to-dusk"]
      },
      {
        "slug": "widget-day-to-dusk-options-tool-day-to-dusk",
        "item_slugs": [
          "item-shadow-removal-widget-day-to-dusk-options-tool-day-to-dusk",
          "item-lawn-touch-up-widget-day-to-dusk-options-tool-day-to-dusk"
        ]
      }
    ]
  }'
```


---

# 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-day-to-dusk.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.
