API Reference
List Campaigns
Retrieve all campaigns across your connected ad platforms
GET
https://api.syntermedia.ai/v1/campaignsQuery parameters
platformstringFilter by platform: GOOGLE, META, LINKEDIN, REDDIT, etc. Default: all
statusstringFilter by status: ENABLED, PAUSED, REMOVED. Default: all
limitintegerMaximum number of results to return (1-100). Default: 50
Example request
bash
curl -X GET "https://api.syntermedia.ai/v1/campaigns?platform=GOOGLE" \
-H "X-Synter-Key: syn_your_api_key"Example response
json
{
"campaigns": [
{
"id": "123456789",
"platform": "GOOGLE",
"name": "Brand - Search",
"status": "ENABLED",
"daily_budget": { "amount": 50.00, "currency": "USD" }
}
],
"has_more": true,
"total_count": 12
}Was this page helpful?
