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

# Audience Summary List

> Retrieve a lightweight, unpaginated list of audiences in the workspace (id, name, variable count, contact count) for dropdowns and pickers.

Use this endpoint to **retrieve a lightweight, unpaginated list of audiences** in the workspace — for dropdowns and pickers.

## Endpoint

**GET** `/audience/summary-list`

**Authentication:** Required (workspace auth)

## Query Parameters

None.

## Response

```json theme={null}
[
  {
    "id": 55,
    "audience_name": "VIP Customers",
    "ID": 55,
    "OBJECT_NAME": "VIP Customers",
    "variable_count": 2,
    "contact_count": 320
  }
]
```

| Field                           | Type   | Description                                                                                                                                         |
| ------------------------------- | ------ | --------------------------------------------------------------------------------------------------------------------------------------------------- |
| `id` / `ID`                     | number | Audience ID. Both keys are returned so the same response also works with generic `selectdynamic` picker components (which read `ID`/`OBJECT_NAME`). |
| `audience_name` / `OBJECT_NAME` | string | Audience name.                                                                                                                                      |
| `variable_count`                | number | Number of input variables saved on the audience.                                                                                                    |
| `contact_count`                 | number | Total contacts in the audience.                                                                                                                     |

## Behavior

* Not paginated — returns every non-deleted audience in the workspace.
* Ordered by `CREATED_DATE` descending.

## Example cURL

```bash theme={null}
curl -X GET https://www.tryunleashx.com/api/v1/global/audience/summary-list \
  -H "token: <api_key>"
```


## OpenAPI

````yaml api-reference/openapi.json GET /audience/summary-list
openapi: 3.1.0
info:
  title: >-
    UnleashX - Build human like conversations | Voice Agents | Automations | AI
    Workforce
  version: 1.0.0
  description: UnleashX - Your home for human like conversations
servers:
  - url: https://www.tryunleashx.com/api/v1/global/
security:
  - bearerAuth: []
paths:
  /audience/summary-list:
    get:
      tags:
        - Audience
      summary: Audience summary list
      description: >-
        Retrieve a lightweight, unpaginated list of audiences in the workspace
        (id, name, variable count, contact count) for dropdowns and pickers.
      parameters:
        - name: token
          in: header
          required: true
          description: API token for authentication
          schema:
            type: string
      responses:
        '200':
          description: Audience summary list retrieved successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: integer
                    audience_name:
                      type: string
                    ID:
                      type: integer
                    OBJECT_NAME:
                      type: string
                    variable_count:
                      type: integer
                    contact_count:
                      type: integer
        '401':
          description: Unauthorized
      security: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````