GET /monitors/{id}/checks

Authentication

Bearer Token (hu_api_key)

Path Parameters

id string required path

Query Parameters

page integer optional query
per_page integer optional query

Responses

200 Paginated check results

No response body

curl -X GET 'https://happyuptime.com/api/v1/monitors/string/checks' \  -H 'Authorization: Bearer YOUR_API_TOKEN'
const response = await fetch('https://happyuptime.com/api/v1/monitors/string/checks', {  method: 'GET',  headers: {      "Authorization": "Bearer YOUR_API_TOKEN"  }});const data = await response.json();console.log(data);
import requestsheaders = {    'Authorization': 'Bearer YOUR_API_TOKEN'}response = requests.get('https://happyuptime.com/api/v1/monitors/string/checks', headers=headers)print(response.json())