Events
Get specific events
HTTP API
Console API
Alerts
Audit Logs
Autotunes
Company
Dynamic Configs
- GETList Dynamic Configs
- POSTCreate Dynamic Config
- GETGet Dynamic Config
- POSTFully Update Dynamic Config
- DELDelete Dynamic Config
- PATCHPartially Update Dynamic Config
- PUTDisable Dynamic Config
- PUTEnable Dynamic Config
- POSTAdd Dynamic Config Rule
- GETGet Specific Dynamic Config Rule
- DELDelete Dynamic Config Rule
- PATCHUpdate Dynamic Config Rule By Id
- DELDelete Dynamic Config Rule By Name
- PATCHUpdate Dynamic Config Rule By Name
- GETGet Dynamic Config Rules
- POSTAdd Dynamic Config Rules
- PATCHUpdate List of Dynamic Config Rules
- GETList Dynamic Config Versions
Experiments
- GETList Experiments
- POSTCreate Experiment
- GETGet Experiment
- POSTFully Update Experiment
- DELDeleted Experiment
- PATCHPartially Update Experiment
- PUTAbandon Experiment
- PUTArchive Experiment
- GETRetrieve cumulative exposures
- POSTDisable Experiment Groups
- POSTEnable Experiment Groups
- PUTFinish Experiment Early
- GETGet Experiment Overrides
- POSTUpdate Experiment Overrides
- DELDelete Experiment Overrides
- PATCHPartially Update Experiment Overrides
- GETRetrieve Pulse Results (Beta)
- PUTReset Experiment
- PUTStart Experiment
- PUTUnarchive Experiment
Experiments (Warehouse Native)
- POSTLoad Pulse (Warehouse Native)
- GETPulse Load History (Warehouse Native)
- POSTPost Assignment Source
- DELDelete Assignment Source
- PATCHPatch Assignment Source
- GETList Assignment Sources
- POSTCreate Assignment Source
- GETList Entity Property Sources
- POSTCreate Entity Property Source
- GETGet Entity Property Source
- POSTPost Entity Property Source
- DELDelete Entity Property Source
- PATCHPatch Entity Property Source
Configs
Gates
- GETList Gates
- POSTCreate Gate
- GETRead Gate
- POSTFully Update Gates
- DELDelete Gates
- PATCHPartially Update Gates
- PUTArchive Gate
- PUTDisable Gate
- PUTEnable Gate
- PUTLaunch Gate
- POSTLoad Pulse Gate
- GETGet Gate Override
- POSTUpdate Gate Overrides
- DELDelete Gate Overrides
- PATCHAdd Gate Overrides
- POSTAdd Gate Rule
- GETRead Gate Rules
- POSTAdd Multiple Gate Rule
- PATCHUpdate list of current Gate Rules settings
- DELDelete Gate Rule
- PATCHUpdate Gate Rules
- GETPulse Load History (Warehouse Native)
- GETRetrieve Pulse Results (Beta)
- GETList Gate Versions
Holdouts
Ingestions
- GETRead Ingestion
- POSTCreate Ingestion Source
- DELDelete Ingestion Source
- PATCHUpdate Ingestion Source
- POSTBackfill Ingestion
- POSTCreate Ingestion Databricks
- GETGet Ingestion Event Count
- GETGet Ingestion Event Delta Ledger
- GETList Ingestion Runs
- GETRead Ingestion Run
- GETRead Ingestion Schedule
- POSTUpdate Ingestion Schedule
- GETList Ingestions Status
Keys
Layers
Metrics
Metrics (Warehouse Native)
Project
Reports
Segments
Target App
Users
- GETList Users
- GETGet user by email
- POSTUpdate user
- POSTInvite user. To avoid spamming, invitation emails are not sent. Invitee will see invitation notification in-app after logging in.
- GETList Teams
- POSTCreate Team
- GETGet Team
- DELDelete Team
- PATCHUpdate Team. Ops: Replace. Use GET for current data if you intent to Add.
Events
Get specific events
GET
/
console
/
v1
/
events
/
{eventName}
curl --request GET \
--url https://statsigapi.net/console/v1/events/{eventName} \
--header 'STATSIG-API-KEY: <api-key>'
{
"message": "Event values listed successfully.",
"data": [
{
"timestamp": "1720567904601",
"name": "add_to_cart",
"source": "statsig-node",
"value": "appliances",
"userID": "3411",
"metadata": {}
},
{
"timestamp": "1720567904594",
"name": "add_to_cart",
"source": "statsig-node",
"value": "sports",
"userID": "1037",
"metadata": {}
},
{
"timestamp": "1720567904307",
"name": "add_to_cart",
"source": "statsig-node",
"value": "",
"userID": "5056",
"metadata": {}
},
{
"timestamp": "1720567904299",
"name": "add_to_cart",
"source": "statsig-node",
"value": "books",
"userID": "7326",
"metadata": {}
},
{
"timestamp": "1720567904288",
"name": "add_to_cart",
"source": "statsig-node",
"value": "books",
"userID": "166",
"metadata": {}
},
{
"timestamp": "1720567904310",
"name": "add_to_cart",
"source": "statsig-node",
"value": "office products",
"userID": "3255",
"metadata": {}
},
{
"timestamp": "1720567904299",
"name": "add_to_cart",
"source": "statsig-node",
"value": "sports",
"userID": "8598",
"metadata": {}
}
],
"pagination": {
"itemsPerPage": 7,
"pageNumber": 1,
"totalItems": 100,
"nextPage": "/console/v1/events/add_to_cart?page=2&limit=7",
"previousPage": null,
"all": "/console/v1/events/add_to_cart"
}
}
Authorizations
Headers
Optional header to respect review settings for mutation endpoints.
Path Parameters
Response
200
application/json
Get specific events response
A simple string explaining the result of the operation.
Array of results returned by pagination limit.
The timestamp when the event occurred, represented as a string.
The name of the event (e.g., "add_to_cart").
The source of the event, indicating where it was triggered from.
The value associated with the event, providing additional context.
The ID of the user who triggered the event.
curl --request GET \
--url https://statsigapi.net/console/v1/events/{eventName} \
--header 'STATSIG-API-KEY: <api-key>'
{
"message": "Event values listed successfully.",
"data": [
{
"timestamp": "1720567904601",
"name": "add_to_cart",
"source": "statsig-node",
"value": "appliances",
"userID": "3411",
"metadata": {}
},
{
"timestamp": "1720567904594",
"name": "add_to_cart",
"source": "statsig-node",
"value": "sports",
"userID": "1037",
"metadata": {}
},
{
"timestamp": "1720567904307",
"name": "add_to_cart",
"source": "statsig-node",
"value": "",
"userID": "5056",
"metadata": {}
},
{
"timestamp": "1720567904299",
"name": "add_to_cart",
"source": "statsig-node",
"value": "books",
"userID": "7326",
"metadata": {}
},
{
"timestamp": "1720567904288",
"name": "add_to_cart",
"source": "statsig-node",
"value": "books",
"userID": "166",
"metadata": {}
},
{
"timestamp": "1720567904310",
"name": "add_to_cart",
"source": "statsig-node",
"value": "office products",
"userID": "3255",
"metadata": {}
},
{
"timestamp": "1720567904299",
"name": "add_to_cart",
"source": "statsig-node",
"value": "sports",
"userID": "8598",
"metadata": {}
}
],
"pagination": {
"itemsPerPage": 7,
"pageNumber": 1,
"totalItems": 100,
"nextPage": "/console/v1/events/add_to_cart?page=2&limit=7",
"previousPage": null,
"all": "/console/v1/events/add_to_cart"
}
}