Skip to main content
GET
/
api
/
v1
/
ad-accounts
List Ad Accounts
curl --request GET \
  --url https://api.sequenzy.com/api/v1/ad-accounts \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "adAccounts": [
    {
      "id": "act_1234567890",
      "name": "Acme Main Account"
    }
  ]
}
List the Meta ad accounts reachable through your connected Meta Ads integration. Use the returned id as adAccountId when creating an audience sync.

Request

curl "https://api.sequenzy.com/api/v1/ad-accounts" \
  -H "Authorization: Bearer YOUR_API_KEY"

Responses

{
  "success": true,
  "adAccounts": [
    {
      "id": "act_1234567890",
      "name": "Acme Main Account"
    }
  ]
}