To list all of the Uptime checks on your account, send a GET request to /v2/uptime/checks
.
Name | Type | Required | Description | Default Value |
---|---|---|---|---|
per_page |
integer | False | Number of items returned per page | 20 |
page |
integer | False | Which ‘page’ of paginated results to return. | 1 |
import os
from pydo import Client
client = Client(token=os.environ.get("DIGITALOCEAN_TOKEN"))
resp = client.uptime.checks_list()
See the API spec for this endpoint to view additional detail on responses, headers, parameters, and more.
The response will be a JSON object with a key called checks
. This will be set to an array of objects, each of which will contain the standard attributes associated with an uptime check
Unauthorized
The resource was not found.
API Rate limit exceeded
Server error.
Unexpected error