cURL
curl --request POST \ --url https://api.openfunnel.dev/api/v1/audience/get-audience-list \ --header 'Content-Type: application/json' \ --header 'X-API-Key: <x-api-key>' \ --header 'X-User-ID: <x-user-id>' \ --data ' { "pagination": { "limit": 50, "offset": 0 } } '
{ "audiences": [ { "audience_id": 123, "audience_name": "<string>", "audience_type": "<string>" } ], "total_count": 123, "pagination": { "limit": 123, "offset": 123, "total_count": 123, "has_more": true } }
Request to list audiences with optional pagination.
Pagination parameters for the request
Show child attributes
Successful Response
Paginated response for audience list.
Pagination metadata (included when pagination is requested)