GET
/
v1beta
/
stats
/
domains
/
{uuid}
/
response-time
/
stats
Get domain response time statistics
curl --request GET \
  --url https://app.pulseguard.nl/api/v1beta/stats/domains/{uuid}/response-time/stats \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "<string>",
  "data": {
    "average_response_time": 123,
    "min_response_time": 123,
    "max_response_time": 123,
    "uptime_percentage": 123,
    "total_checks": 123,
    "successful_checks": 123,
    "failed_checks": 123
  }
}

Authorizations

Authorization
string
header
required

API token generated from your PulseGuard dashboard

Path Parameters

uuid
string
required

Domain UUID

Query Parameters

period
enum<string>
default:24h

Time period for statistics

Available options:
1h,
24h,
7d,
30d,
90d

Response

200
application/json

Response time statistics retrieved successfully

The response is of type object.