> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sequenzy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Ad Accounts

> List the Meta ad accounts available for audience syncs

List the Meta ad accounts reachable through your connected Meta Ads integration. Use the returned `id` as `adAccountId` when [creating an audience sync](/api-reference/audience-syncs/create).

## Request

```bash theme={null}
curl "https://api.sequenzy.com/api/v1/ad-accounts" \
  -H "Authorization: Bearer YOUR_API_KEY"
```

## Responses

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "adAccounts": [
      {
        "id": "act_1234567890",
        "name": "Acme Main Account"
      }
    ]
  }
  ```

  ```json 400 theme={null}
  {
    "error": "Meta Ads is not connected for this company. Connect it in Settings -> Integrations."
  }
  ```

  ```json 401 theme={null}
  {
    "error": "Unauthorized"
  }
  ```
</ResponseExample>
