Skip to main content
GET
/
api
/
infrastructure
/
v1
/
list-internet-outages
ListInternetOutages
curl --request GET \
  --url https://api.example.com/api/infrastructure/v1/list-internet-outages
{
  "outages": [
    {
      "id": "<string>",
      "title": "<string>",
      "link": "<string>",
      "description": "<string>",
      "detectedAt": 123,
      "country": "<string>",
      "region": "<string>",
      "location": {
        "latitude": 0,
        "longitude": 0
      },
      "severity": "OUTAGE_SEVERITY_UNSPECIFIED",
      "categories": [
        "<string>"
      ],
      "cause": "<string>",
      "outageType": "<string>",
      "endedAt": 123
    }
  ],
  "pagination": {
    "nextCursor": "<string>",
    "totalCount": 123
  }
}

Query Parameters

start
string<int64>

Start of time range (inclusive), Unix epoch milliseconds.

end
string<int64>

End of time range (inclusive), Unix epoch milliseconds.

page_size
integer<int32>

Maximum items per page.

cursor
string

Cursor for next page.

country
string

Optional country filter (ISO 3166-1 alpha-2).

Response

Successful response

ListInternetOutagesResponse contains internet outages matching the request.

outages
object[]
pagination
object

PaginationResponse contains pagination metadata returned alongside list results.