Developer Docs
IsDownPricingHelp Docs
  • Introduction
  • Quick Start
  • Endpoints
    • 3rd-Party Monitors
      • Get List of All Services Available
      • Get Outages from 3rd-party Monitors
      • Get status and outage information of a service
      • Add 3rd-party Monitor to Board
      • Remove 3rd-party Monitor from Board
    • Custom Monitors
      • Get List of your Custom Monitors
      • Get Outages from Custom Monitors
    • Incidents
      • Get incidents from all services (or just one)
  • Boards
    • Get List of your Boards
    • Get specific Board
Powered by GitBook
On this page
  1. Boards

Get specific Board

GET https://isdown.app/api/v2/boards/{board_id}

Path Parameters

Name
Type
Description

board_id*

String

Board Id. Get the identifier for the board in the settings screen.

Headers

Name
Type
Description

Authorization*

String

Bearer API_KEY

{
    "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"
                }
            ]
        }
    }
}
{
    "errors": [
        {
            "status": 401,
            "title": "Unauthorized access",
            "detail": "You are not authorized to access this resource"
        }
    ]
}
{
    "errors": [
        {
            "status": 404,
            "title": "Resource not found",
            "detail": "The resource you are looking for does not exist"
        }
    ]
}

PreviousGet List of your Boards

Last updated 1 month ago