> ## 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 Audience Syncs

> List segment-to-Meta-audience syncs with schedule and status

List your audience syncs - mappings that push a segment's subscribers to a Meta custom audience on a schedule.

## Request

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

## Responses

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "audienceSyncs": [
      {
        "id": "sync_abc123",
        "segmentId": "seg_recent_buyers",
        "segmentName": "Recent buyers",
        "adAccountId": "act_1234567890",
        "audienceName": "Sequenzy - Recent buyers",
        "frequency": "daily",
        "isActive": true,
        "syncStatus": "idle",
        "lastSyncAt": "2026-06-12T10:00:00.000Z",
        "lastSyncError": null,
        "lastSyncedCount": 4216,
        "createdAt": "2026-06-01T09:00:00.000Z"
      }
    ]
  }
  ```

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