---
title: "Get audience members"
method: GET
path: "/audience/{id}/members"
tags: ["Audience"]
---

# Get audience members

`GET /audience/{id}/members`

Retrieve members of a specific audience with pagination support. Users can only access members of audiences they created.

## Path parameters

- `id` string, required

## Query parameters

- `page` integer
- `offset` integer

## Response `200`

Successfully retrieved audience members

- object
  - `status` boolean
  - `data` object
    - `members` object[]
      - `_id` string — The unique identifier for the audience member
      - `data` object — Dynamic data from CSV, structure depends on uploaded file
    - `totalCount` integer — Total number of members in the audience
    - `totalPages` integer — Total number of pages available
    - `hasMore` boolean — Whether there are more pages available

## Other responses

- `400` — Bad request
- `401` — Unauthorized access
- `403` — Forbidden — audience belongs to a different organization
- `404` — Audience not found
- `500` — Internal server error

## Changes

- **2026-05-26** `2bfbd089ccb3` — 1 warning, 4 info
  - deleted the `query` request parameter `limit`
  - added the new optional `query` request parameter `offset`
  - added the non-success response with the status `401`
  - added the non-success response with the status `403`
  - …1 more
- **2026-01-28** `8e52b2362d0a` — 1 warning, 1 info
  - deleted the `query` request parameter `offset`
  - added the new optional `query` request parameter `limit`

[Change history](https://skmtc.dev/smallest-inc/apis/agent-management-api/changes/audience/:id/members/get.md)

---

[API](https://skmtc.dev/smallest-inc/apis/agent-management-api.md) · [All operations](https://skmtc.dev/smallest-inc/apis/agent-management-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/smallest-inc/agent-management-api/revisions/274a178284a4/schema)
