GET
/
console
/
v1
/
holdouts
curl --request GET \
  --url https://statsigapi.net/console/v1/holdouts \
  --header 'STATSIG-API-KEY: <api-key>'
{
  "message": "Holdouts listed successfully.",
  "data": [
    {
      "id": "testing_holdout",
      "name": "testing holdout",
      "description": "helpful summary of what this holdout does",
      "idType": "userID",
      "lastModifierID": "4dcQUIpS8PHObBGD7HJwOx",
      "lastModifiedTime": 1719873874212,
      "lastModifierName": "CONSOLE API",
      "lastModifierEmail": null,
      "creatorID": "4dcQUIpS8PHObBGD7HJwOx",
      "createdTime": 1719873870785,
      "creatorName": "CONSOLE API",
      "creatorEmail": null,
      "targetApps": [],
      "tags": [],
      "team": "Console Team",
      "isEnabled": true,
      "isGlobal": false,
      "passPercentage": 0,
      "gateIDs": [],
      "experimentIDs": [],
      "layerIDs": [],
      "targetingGateID": null
    },
    {
      "id": "test123",
      "name": "test123",
      "description": "",
      "idType": "userID",
      "lastModifierID": "5O908pyGoCqw6QH1nt8v82",
      "lastModifiedTime": 1719872028057,
      "lastModifierName": "test",
      "lastModifierEmail": "user@statsig.com",
      "creatorID": "5O908pyGoCqw6QH1nt8v82",
      "createdTime": 1719872027567,
      "creatorName": "Test User",
      "creatorEmail": "test@statsig.com",
      "targetApps": [],
      "tags": [],
      "team": "Console Team",
      "isEnabled": true,
      "isGlobal": false,
      "passPercentage": 0,
      "gateIDs": [],
      "experimentIDs": [],
      "layerIDs": [],
      "targetingGateID": null
    },
    {
      "id": "test_target_gate",
      "name": "test_target_gate",
      "description": "test holdout",
      "idType": "userID",
      "lastModifierID": "4dcQUIpS8PHObBGD7HJwOx",
      "lastModifiedTime": 1710521134863,
      "lastModifierName": "CONSOLE API",
      "lastModifierEmail": null,
      "creatorID": "5sgBiiuoBX4fscrWdCXVma",
      "createdTime": 1702237002465,
      "creatorName": "Test User",
      "creatorEmail": "test@statsig.com",
      "targetApps": [],
      "tags": [],
      "team": null,
      "isEnabled": true,
      "isGlobal": false,
      "passPercentage": 1,
      "gateIDs": [
        "product_larger_image",
        "product_larger_image_lower",
        "test_new_gate",
        "ma_test_rollout",
        "empty_gate",
        "new_gate_to_point_experiment_at",
        "new_gate_with_monitoring_metrics",
        "andy_test_gate"
      ],
      "experimentIDs": [
        "mostly_test_experiment",
        "test_123",
        "new_test_exp",
        "test_exp_start",
        "andy_test_experiment"
      ],
      "layerIDs": [
        "Homepage Feed Improvements",
        "statsig_is_awesome",
        "testing_tool",
        "test_statsig_2",
        "layer_holdout_parameters"
      ],
      "targetingGateID": ""
    }
  ],
  "pagination": {
    "itemsPerPage": 20000,
    "pageNumber": 1,
    "totalItems": 3,
    "nextPage": null,
    "previousPage": null,
    "all": "/console/v1/holdouts"
  }
}

Authorizations

STATSIG-API-KEY
string
header
required

Headers

x-respect-review-settings
string

Optional header to respect review settings for mutation endpoints.

Query Parameters

creatorName
string | null

Name of the creator.

creatorID
string | null

ID of the user who created the entity.

tags

Filter by tags

limit
integer

Results per page

Example:

10

page
integer

Page number

Example:

1

Response

200
application/json
List holdouts 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.