GET
/
console
/
v1
/
exposure_count
curl --request GET \
  --url https://statsigapi.net/console/v1/exposure_count \
  --header 'STATSIG-API-KEY: <api-key>'
{
  "message": "Exposure count fetched successfully.",
  "data": {
    "gates": [
      {
        "id": "a_gate",
        "pastDay": 0,
        "past7Days": 98
      }
    ],
    "experiments": [
      {
        "id": "my_experiment",
        "pastDay": 102,
        "past7Days": 558
      },
      {
        "id": "another_experiment",
        "pastDay": 5904,
        "past7Days": 2078
      }
    ],
    "dynamicConfigs": [
      {
        "id": "dc_limit",
        "pastDay": 240830,
        "past7Days": 1329945
      }
    ]
  }
}

Authorizations

STATSIG-API-KEY
string
header
required

Headers

x-respect-review-settings
string

Optional header to respect review settings for mutation endpoints.

Query Parameters

experiments
gates
dynamicConfigs

Response

200
application/json
Get Experiment Success
message
string
required

A simple string explaining the result of the operation.

data
object
required

A single result.