Maximum date range 7 days
This endpoint is protected and requires an agency API key for access.
curl --request GET \
--url https://api.growthchannel.io/public/performance/?date_from=2025-01-01&date_to=2025-1-03&advertiser_id=544
The agency’s API key for authorization ask admin to create ot for your usage
Parms
Date staring from response will be generated ?date_from=2025-01-01
Date ending with response will be generated ?date_to=2025-01-03
The unique identifier for the adveticer ?advertiser_id=544
Responses
{
"data": [
{
"...": "..."
}
],
"pagination": {
"total_records": 100,
"total_pages": 10
},
"parameters": {
"date_from": "2023-01-01",
"date_to": "2023-01-03",
"advertiser_id": 544
}
}
An array of campaign performance objects.
An object containing pagination details.
The total number of records found.
The total number of pages.
An object containing the query parameters used for the request.
Returned if required query parameters like date_from or date_to are missing.{
"error": {
"code": "VALIDATION_ERROR",
"message": "Missing required parameters",
"details": {
"missing_fields": ["date_from", "date_to"]
},
"request_id": "..."
}
}
Returned if the X-Api-Key header is missing or invalid.
Returned if there is an unexpected error on the server while fetching data.