This endpoint is protected and requires an agency API key for access.
curl --request GET \
--url https://api.growthchannel.io/geo/?date_from=2024-01-01&date_to=2024-01-07&advertiser_id=544&breakout=country
The agency’s API key for authorization. Contact an admin to get one.
Parameters
Start date in YYYY-MM-DD format.
End date in YYYY-MM-DD format.
The unique identifier for the advertiser.
Page number for pagination.
Geographic breakdown level (country/region/zip_code).
Filter by a specific campaign ID.
Breakout Options
The breakout parameter determines the level of geographic detail in the report.
country: Aggregates data by country.
region: Aggregates data by state or region.
zip_code: Aggregates data by postal code.
Responses
{
"data": [
{
"country": "US",
"impressions": 1000,
"clicks": 50,
"total_conversions": 0,
"video_audio_views": 0,
"video_audio_complete": 0,
"total_revenue": 0.0,
"total_spend": 0.005,
"cpm": 5.126,
"cpc": 0.0,
"cpa": 0.0,
"cpv": 0.005,
"cpv_video": 0.0,
"cpcv_video": 0.0,
"roas": 0.0,
"vcr": 0.0,
"ctr": 0.0
}
],
"pagination": {
"current_page": 0,
"total_pages": 5,
"total_count": 100
},
"breakout": "country"
}
An array of geographic performance objects. The location key (country, region, or zip_code) depends on the breakout parameter used in the request.
An object containing pagination details.