cURL
curl --request GET \ --url https://api.example.com/v1/audiences/{audienceId}/contacts
List all contacts in an audience.
curl "https://www.unosend.co/api/v1/audiences/aud_123/contacts?limit=10" \ -H "Authorization: Bearer un_xxxxxxxxxx"
{ "data": [ { "id": "con_123", "email": "[email protected]", "first_name": "John", "last_name": "Doe", "unsubscribed": false, "created_at": "2024-01-15T10:30:00.000Z" } ], "total": 1250, "limit": 10, "offset": 0 }