post https://a.klaviyo.com/api/form-series-reports
Returns the requested form analytics series data.
Rate limits:
Burst: 1/s
Steady: 2/m
Daily: 225/d
Scopes:
forms:read
Responses
Returns the requested form analytics series data.
Rate limits:
Burst: 1/s
Steady: 2/m
Daily: 225/d
Scopes:
forms:read
xxxxxxxxxx
19curl --request POST \
--url https://a.klaviyo.com/api/form-series-reports \
--header 'Authorization: Klaviyo-API-Key your-private-api-key' \
--header 'accept: application/vnd.api+json' \
--header 'content-type: application/vnd.api+json' \
--header 'revision: 2025-01-15' \
--data '
{
"data": {
"type": "form-series-report",
"attributes": {
"timeframe": {
"key": "last_12_months"
},
"interval": "daily"
}
}
}
'
xxxxxxxxxx
48}
{
"data": {
"type": "form-series-report",
"attributes": {
"results": [
{
"groupings": {
"form_id": "abc123"
},
"statistics": {
"viewed_form": [
100,
120,
140
],
"submits": [
20,
22,
28
]
}
},