🔚Get Spaces

Getting available spaces for each service

Endpoint:

GET https://api.aihomedesign.com/api/public/v1/catalog/spaces

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

Before submitting any order, use this API to check available spaces. The space_name field may be mandatory for specific services; if required, set space_name based on the uploaded image.

Sample Response:

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

Last updated