# Design Scope

## ENDPOINT&#x20;

<mark style="color:green;">**`GET`**</mark>  <mark style="color:purple;">**`/designscope`**</mark>

An API URL would be like <mark style="color:blue;"><https://homedesigns.ai/api/v2/designscope></mark>

### Request

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

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)

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

}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://api.homedesigns.ai/homedesignsai-api-documentation/data/design-scope.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
