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 List of your Boards

GET https://isdown.app/api/v2/boards

Headers

Name
Type
Description

Authorization*

String

Bearer API_KEY

{
  "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" }
        ]
      }
    }
  ]
}
{
    "errors": [
        {
            "status": 401,
            "title": "Unauthorized access",
            "detail": "You are not authorized to access this resource"
        }
    ]
}
{
  "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" }
        ]
      }
    }
  ]
}

PreviousBoardsNextGet specific Board

Last updated 1 month ago