API referenceAnalytics
GET /analytics/dimensions/values
The distinct values seen for a dimension key (from /analytics/dimensions). Use a value with filterTagKey+filterTagValue to scope any analytics read to it.
Query Parameters
key*string
Dimension (attribute) key to list values for
environment?string
Filter to one environment id or slug; empty = all
limit?integer
Max values (default 50, max 500)
Format
int64Response Body
application/json
application/problem+json
curl -X GET "https://example.com/analytics/dimensions/values?key=string"{ "$schema": "https://example.com/schemas/DimensionValuesOutputBody.json", "key": "string", "values": [ { "lastSeen": "string", "value": "string" } ]}GET /analytics/dimensions GET
Start here for custom-dimension analytics: this lists the business attribute keys your app has stamped on its telemetry (e.g. participant_role, tenant, plan). Feed a key into /analytics/breakdown?dimension=tag&tagKey=<key> to rank it, then into filterTagKey+filterTagValue on /analytics/timeseries and /analytics/latency to trend and get percentiles for one value.
GET /analytics/latency GET
Next Page