🔚Get Widgets

Getting available widgets for each service

Endpoint:

GET https://api.aihomedesign.com/api/public/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

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.

Sample Response:

{
    "data": [
        {
            "id": string,
            "title": string,
            "description": string,
            "is_optional": boolean,
            "is_active": boolean
        }
    ]
}

Last updated