get https://a.klaviyo.com/api/coupons
Get all coupons in an account.
To learn more, see our Coupons API guide.
Rate limits:
Burst: 75/s
Steady: 700/m
Scopes:
coupons:read
Responses
Get all coupons in an account.
To learn more, see our Coupons API guide.
Rate limits:
Burst: 75/s
Steady: 700/m
Scopes:
coupons:read
xxxxxxxxxx
curl --request GET \
--url https://a.klaviyo.com/api/coupons \
--header 'Authorization: Klaviyo-API-Key your-private-api-key' \
--header 'accept: application/vnd.api+json' \
--header 'revision: 2025-01-15'
xxxxxxxxxx
22{
"data": [
{
"type": "coupon",
"id": "10OFF",
"attributes": {
"external_id": "10OFF",
"description": "10% off for purchases over $50"
},
"links": {
"self": "string"
}
}
],
"links": {
"self": "string",
"first": "string",
"last": "string",
"prev": "string",
"next": "string"
}
}