application/json

Body

  • fromDate string(date-time)
  • toDate string(date-time)
  • limit integer
  • fillMissing boolean

Responses

  • 200 application/json

    Stats for the requested range

    Hide response attributes Show response attributes object
    • error boolean
    • timestamp string(date-time)
    • uniqueId string | null
  • 401 application/json

    Unauthorized or invalid API key/cookie

    Hide response attributes Show response attributes object
    • error boolean
    • timestamp string(date-time)
    • uniqueId string | null
POST /stats/all
curl \
 --request POST 'https://call.xap3y.space/v1/stats/all' \
 --header "X-API-Key: $API_KEY" \
 --header "Content-Type: application/json" \
 --data '{"fromDate":"2025-05-04T09:42:00Z","toDate":"2025-05-04T09:42:00Z","limit":42,"fillMissing":true}'
Request examples
{
  "fromDate": "2025-05-04T09:42:00Z",
  "toDate": "2025-05-04T09:42:00Z",
  "limit": 42,
  "fillMissing": true
}
Response examples (200)
{
  "error": true,
  "timestamp": "2025-05-04T09:42:00Z",
  "uniqueId": "string"
}
Response examples (401)
{
  "error": true,
  "timestamp": "2025-05-04T09:42:00Z",
  "uniqueId": "string"
}