# Get List of your Boards

<mark style="color:blue;">`GET`</mark> `https://isdown.app/api/v2/boards`

#### Headers

| Name                                            | Type   | Description     |
| ----------------------------------------------- | ------ | --------------- |
| Authorization<mark style="color:red;">\*</mark> | String | Bearer API\_KEY |

{% tabs %}
{% tab title="200: OK List of all the services" %}

```json
{
  "data": [
    {
      "id": "00000000-0000-0000-0000-000000000000",
      "type": "board",
      "attributes": {
        "name": "Demo Board",
        "urlname": "demo-board",
        "services": [
          { "name": "Slack",         "urlname": "slack",  "tags": [] },
          { "name": "Stripe",        "urlname": "stripe",  "tags": [] },
          { "name": "Google Cloud",  "urlname": "google-cloud",  "tags": [] }
        ]
      }
    },
    {
      "id": "11111111-1111-1111-1111-111111111111",
      "type": "board",
      "attributes": {
        "name": "Sample Board",
        "urlname": "sample-board",
        "services": [
          { "name": "AWS",           "urlname": "aws",  "tags": [] },
          { "name": "Azure",         "urlname": "azure",  "tags": [] },
          { "name": "Cloudflare",    "urlname": "cloudflare",  "tags": [] }
        ]
      }
    }
  ]
}

```

{% endtab %}
{% endtabs %}

{% tabs %}
{% tab title="401: Unauthorized When authorization is missing or is invalid" %}

```json
{
    "errors": [
        {
            "status": 401,
            "title": "Unauthorized access",
            "detail": "You are not authorized to access this resource"
        }
    ]
}
```

{% endtab %}

{% tab title="200: OK When status is any other than OK" %}

```json
{
  "data": [
    {
      "id": "00000000-0000-0000-0000-000000000000",
      "type": "board",
      "attributes": {
        "urlname": "demo-board",
        "services": [
          { "name": "Slack",         "urlname": "slack" },
          { "name": "Stripe",        "urlname": "stripe" },
          { "name": "Google Cloud",  "urlname": "google-cloud" }
        ]
      }
    }
  ]
}
```

{% endtab %}
{% endtabs %}


---

# 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://dev.isdown.app/endpoints/boards/get-list-of-your-boards.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.
