🔚Get Widget Items

Getting available items of each widget

Endpoint:

GET https://api.aihomedesign.com/api/public/v1/catalog/widgets/{widget-id}/items

Retrieve items for a given widget using this endpoint. Replace {widget-id} with the actual ID of the widget.

This API must be called before submitting any order to check the available items of a widget. Widget items are possible values for each widget.

Sample Response:

{
    "data": [
        {
            "id": string,
            "title": string,
            "prompt": string,
            "icon_src": string,
            "widget_id": string,
            "is_premium": boolean,
            "is_active": boolean
        }
    ]
}

Last updated