GET
/
console
/
v1
/
keys
curl --request GET \
  --url https://statsigapi.net/console/v1/keys \
  --header 'STATSIG-API-KEY: <api-key>'
{
  "message": "Keys listed successfully.",
  "data": [
    {
      "key": "secret-123",
      "type": "SERVER",
      "description": "Server secret key",
      "scopes": [],
      "environments": [
        "production"
      ],
      "primaryTargetApp": "primaryApp",
      "secondaryTargetApps": [
        "secondaryApp"
      ],
      "status": "active"
    },
    {
      "key": "console-123",
      "type": "CONSOLE",
      "description": "Console API key",
      "scopes": [
        "omni_read_write",
        "can_access_keys"
      ],
      "status": "active"
    }
  ]
}

Authorizations

STATSIG-API-KEY
string
header
required

Headers

x-respect-review-settings
string

Optional header to respect review settings for mutation endpoints.

Query Parameters

primaryTargetApp
string
environment
string
limit
integer

Results per page

Example:

10

page
integer

Page number

Example:

1

Response

200
application/json
Keys listed successfully
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.