GET
/
custom
/
org
/
{organization_uuid}
/
reports
/
requests
/
aggregate
curl --request GET \
  --url https://api.tilt.io/custom/org/{organization_uuid}/reports/requests/aggregate/ \
  --header 'X-Api-Key: <api-key>'
{
  "total_stats": {
    "request_count": 123,
    "timing_ms": {
      "mean": 123,
      "min": 123,
      "max": 123,
      "p95": 123
    },
    "status_code_distribution": {}
  },
  "route_method_stats": []
}

Authorizations

X-Api-Key
string
header
required

Path Parameters

organization_uuid
string
required

Query Parameters

end_date
string

Filter requests created on or before this datetime

start_date
string

Filter requests created on or after this datetime

Response

200 - application/json

The response is of type object.