# 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" },
          { "name": "Stripe",        "urlname": "stripe" },
          { "name": "Google Cloud",  "urlname": "google-cloud" }
        ]
      }
    },
    {
      "id": "11111111-1111-1111-1111-111111111111",
      "type": "board",
      "attributes": {
        "name": "Sample Board",
        "urlname": "sample-board",
        "services": [
          { "name": "AWS",           "urlname": "aws" },
          { "name": "Azure",         "urlname": "azure" },
          { "name": "Cloudflare",    "urlname": "cloudflare" }
        ]
      }
    }
  ]
}

```

{% 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 %}
