get https://a.klaviyo.com/api/images
Get all images in an account.
Rate limits:
Burst: 10/s
Steady: 150/m
Scopes:
images:read
Responses
Get all images in an account.
Rate limits:
Burst: 10/s
Steady: 150/m
Scopes:
images:read
xxxxxxxxxx
curl --request GET \
--url 'https://a.klaviyo.com/api/images?page[size]=20' \
--header 'Authorization: Klaviyo-API-Key your-private-api-key' \
--header 'accept: application/vnd.api+json' \
--header 'revision: 2025-01-15'
xxxxxxxxxx
26{
"data": [
{
"type": "image",
"id": "7",
"attributes": {
"name": "string",
"image_url": "string",
"format": "string",
"size": 0,
"hidden": true,
"updated_at": "2022-11-08T00:00:00+00:00"
},
"links": {
"self": "string"
}
}
],
"links": {
"self": "string",
"first": "string",
"last": "string",
"prev": "string",
"next": "string"
}
}