Skip to main content
GET
/
api
/
domains
/
{id}
/
monitoring
/
history
Get monitoring history
curl --request GET \
  --url https://api.ipulse.one/api/domains/{id}/monitoring/history \
  --header 'Authorization: Bearer <token>'
{
  "domain_id": "<string>",
  "period": "<string>",
  "checks": [
    {
      "timestamp": "2023-11-07T05:31:56Z",
      "status": "up",
      "response_time_ms": 123,
      "error": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

JWT Bearer token authentication

Path Parameters

id
string
required

Query Parameters

period
enum<string>
default:24h
Available options:
1h,
24h,
7d,
30d

Response

200 - application/json

Monitoring history

domain_id
string
period
string
checks
object[]