Get Widgets and Items

Get the Available Widgets and Items for Each Service

Explanation

This API must be called before submitting any order to check the availability of widgets and items. Widgets can be optional or mandatory depending on the service.


GET https://api.aihomedesign.com/v1/catalog/items/filter


Query Parameters:

  • space_name (string): Set your desired space name e.g. space-bedroom

  • service_name (string): Set your desired service name e.g. service-ai-creative-designer

Response

{
    "data": [
        {
            "id": string,
            "title": string,
            "description": string,
            "is_optional": boolean,
            "items": [
                {
                    "id": string,
                    "title": string,
                    "prompt": string,
                    "icon_src": string,
                    "is_premium": boolean
                }
            ],
            "priority": numeric,
            "type": string
        }
    ]
}

Last updated