# Get Board

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

#### Path Parameters

| Name                                        | Type   | Description                                                        |
| ------------------------------------------- | ------ | ------------------------------------------------------------------ |
| board\_id<mark style="color:red;">\*</mark> | String | Board Id. Get the identifier for the board in the settings screen. |

#### 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
```

{% endtab %}
{% endtabs %}

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

```json
{
    "data": {
        "id": "00000000-0000-0000-0000-000000000000",
        "type": "board",
        "attributes": {
            "name": "Critical Vendors",
            "urlname": "critical-vendors",
            "services": [
                {
                    "name": "Zendesk",
                    "urlname": "zendesk"
                },
                {
                    "name": "Vercel",
                    "urlname": "vercel"
                },
                {
                    "name": "Slack",
                    "urlname": "slack"
                },
                {
                    "name": "Azure DevOps",
                    "urlname": "azure-devops"
                },
                {
                    "name": "Google Workspace",
                    "urlname": "google-workspace"
                },
                {
                    "name": "Azure",
                    "urlname": "azure"
                },
                {
                    "name": "Cloudflare",
                    "urlname": "cloudflare"
                }
            ]
        }
    }
}
```

{% endtab %}

{% 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="404: Board Not Found" %}

```json
{
    "errors": [
        {
            "status": 404,
            "title": "Resource not found",
            "detail": "The resource you are looking for does not exist"
        }
    ]
}
```

{% endtab %}
{% endtabs %}
