GET
/
console
/
v1
/
metrics
/
values
curl --request GET \
  --url https://statsigapi.net/console/v1/metrics/values \
  --header 'STATSIG-API-KEY: <api-key>'
{
  "message": "Metric values listed successfully.",
  "data": [
    {
      "value": 21377,
      "unitType": "overall",
      "numerator": null,
      "denominator": null,
      "metricName": "Page Loads",
      "metricType": "event_count_custom"
    },
    {
      "value": 21377,
      "unitType": "stableID",
      "numerator": null,
      "denominator": null,
      "metricName": "Page Loads",
      "metricType": "event_count_custom"
    },
    {
      "value": 21355,
      "unitType": "userID",
      "numerator": null,
      "denominator": null,
      "metricName": "Page Loads",
      "metricType": "event_count_custom"
    },
    {
      "value": 646524,
      "unitType": "stableID",
      "numerator": null,
      "denominator": null,
      "metricName": "Average Time Spent on Page",
      "metricType": "event_user"
    },
    {
      "value": 5676,
      "unitType": "stableID",
      "numerator": null,
      "denominator": null,
      "metricName": "Page Latency",
      "metricType": "mean"
    }
  ],
  "pagination": {
    "itemsPerPage": 5,
    "pageNumber": 1,
    "totalItems": 5767,
    "nextPage": "/console/v1/metrics/values?date=2024-02-04&page=2&limit=5",
    "previousPage": null
  }
}

Authorizations

STATSIG-API-KEY
string
header
required

Headers

x-respect-review-settings
string

Optional header to respect review settings for mutation endpoints.

Query Parameters

date
string
required
metricName
string
metricType
string
limit
integer

Results per page

Example:

10

page
integer

Page number

Example:

1

Response

200
application/json
List All Metric Values Response
message
string
required

A simple string explaining the result of the operation.

data
object[]
required

Array of results returned by pagination limit.

pagination
object
required

Pagination metadata for checking if there is next page for example.