Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
curl --request GET \
--url https://api.tagdeliver.com/v1/report/experiment \
--header 'Authorization: Bearer <token>'{
"results": [
{
"id": 146,
"uid": 18620,
"domain": "example.com",
"label": null,
"title": "LB 1 Variant Test",
"description": null,
"start": "2025-10-22 00:00:00",
"end": "2025-11-24 23:59:59",
"subject": [
{
"allocation": 50,
"config_id": 8392
},
{
"allocation": 50,
"config_id": 8393
}
],
"status": "live"
}
],
"success": true
}Fetch a list of experiments with their status and top line configuration
curl --request GET \
--url https://api.tagdeliver.com/v1/report/experiment \
--header 'Authorization: Bearer <token>'{
"results": [
{
"id": 146,
"uid": 18620,
"domain": "example.com",
"label": null,
"title": "LB 1 Variant Test",
"description": null,
"start": "2025-10-22 00:00:00",
"end": "2025-11-24 23:59:59",
"subject": [
{
"allocation": 50,
"config_id": 8392
},
{
"allocation": 50,
"config_id": 8393
}
],
"status": "live"
}
],
"success": true
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?