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. Endpoints
  2. 3rd-Party Monitors

Get List of All Services Available

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

Headers

Name
Type
Description

Authorization*

String

Bearer API_KEY

{
    "data": [
        {
            "id": "1",
            "type": "service",
            "attributes": {
                "name": "AWS",
                "urlname": "aws",
                "isdown_url": "https://isdown.app/integrations/aws"
            }
        },
        {
            "id": "55",
            "type": "service",
            "attributes": {
                "name": "Apple Developer",
                "urlname": "apple-developer",
                "isdown_url": "https://isdown.app/integrations/apple-developer"
            }
        },
        ...
    ]
n

The status of the services can be 'ok', 'minor', 'major', and 'maintenance'. It depends on the severity of the incidents and their impact on the service.

Try our demo services to see the examples' responses depending on the status. Here's the list of different demo services available for you to test. 'demo-service' - This service changes the status every 5 minutes, cycling between 'ok' and 'minor' or 'major'. 'demo-service-ok' - This service is always operational. 'demo-service-minor' - This service is always going through a minor outage. 'demo-service-major' - This service is constantly going through a major outage.

Previous3rd-Party MonitorsNextGet Outages from 3rd-party Monitors

Last updated 1 month ago