ScrepyDocs

Get uptime summary and recent checks

Get uptime summary and recent checks

GET/projects/{project_uid}/uptime

Authorization

bearerApiKey
AuthorizationBearer <token>

Create a REST API key in Settings > Connected Apps. MCP credentials do not authenticate this API.

In: header

Path Parameters

project_uid*string

Accessible project UID. Discover it with GET /projects; do not guess it.

Match^[a-z0-9]{10}$

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/projects/string/uptime"
{  "data": {    "summary": {      "current_status": "string",      "uptime_percentage": 0,      "avg_response_time_ms": 0,      "last_checked_at": "2019-08-24T14:15:22Z"    },    "rows": [      {        "label": "string",        "status": "string",        "response_time_ms": 0,        "checked_at": "2019-08-24T14:15:22Z"      }    ]  }}