Design Scope

This API retrieves design scope information, providing details on design types, design styles, room types, colors, and other relevant data.

ENDPOINT

GET /designscope

An API URL would be like https://homedesigns.ai/api/v2/designscope

Request

You need to pass a token and use the endpoint "/designscope" to fetch data for all design types, including required parameter value details.

If you need to fetch details for specific design types like Interior, Exterior, or Garden, you can use the following endpoints:

  • For Interior: /designscope?interiors

  • For Exterior: /designscope?exteriors

  • For Garden: /designscope?gardens

Response

Success Response (200)

{
    
"Interiors": {
        "design_style": [
            {
                "name": "No Style"
            },
            {
                "name": "Eclectic"
            },
          
        "room_type": [
            {
                "name": "Living Room"
            },
            {
                "name": "Bedroom"
            },

}

Last updated

Was this helpful?