Get Widget Items

Get the Available Items of Each Widget

Explanation

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.


GET https://api.aihomedesign.com/v1/catalog/widgets/{widget_id}/items


Path Parameters

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

Response

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

Last updated