v62

latestOpenAPI 3.0.3Apache 2.0raw.githubusercontent.com2026-08-066593120.7 KB
Environment Analytics

Get response status counts for v2 and v4 APIs from specified environment

Get v2 and v4 API analytics response status counts. Response statuses are grouped by endpoint and status code hundreds.

get/analytics/response-status-ranges

Query parameters

frominteger

The timestamp in ms from which the logs will be returned.

tointeger

The timestamp in ms to which the logs will be returned.

Response

Analytics for status codes by entrypoint at environment level

rangesobject

Global status ranges. Alongside the <from>-<to> range keys, the reserved key unknown holds the requests those ranges cannot classify — typically a request whose response status was never committed, indexed with status 0.

Example response

{
  "ranges": {
    "100.0-200.0": {
      "value": 5
    },
    "200.0-300.0": {
      "value": 357
    },
    "300.0-400.0": {
      "value": 0
    },
    "400.0-500.0": {
      "value": 0
    },
    "500.0-600.0": {
      "value": 0
    }
  }
}