Get Widgets

Get available widgets for each service

Explanation

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


GET https://api.aihomedesign.com/v1/catalog/widgets


Query Parameters:

  • active (boolean): Set to true to retrieve only active widgets.

  • 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,
            "is_active": boolean
        }
    ]
}

Last updated