For the complete documentation index, see llms.txt. This page is also available as Markdown.

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

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"
        ]
      }
    ]
  }'

Last updated