List Subscribers
List contacts newest first. Paginate with cursor.
MethodGET
/api/v2/subscribersLists contacts newest first. Permission: subscribers.
Query Parameters
| Name | Type | Description |
|---|---|---|
limit | integer | Page size. Default 50. Min 1, max 100. |
after | string | Subscriber id cursor. Next page, older than this id. |
status | string | Filter: SUBSCRIBED, PENDING_CONFIRMATION, UNSUBSCRIBED, BOUNCED, BANNED, COMPLAINED, TRANSACTIONAL, or all. |
tag | string | Filter by tag name (case-insensitive). |
query | string | Search email or name. |
after is a subscriber id from the previous page.
Response Fields
| Field | Type | Description |
|---|---|---|
object | "list" | Discriminator. Always list. |
has_more | boolean | true when another page exists. |
data | array | Subscriber rows: id, email, name, status, createdAt, tags. |
Errors
| Status | name | When |
|---|---|---|
| 401 | missing_api_key | Missing or invalid bearer token |
| 403 | missing_permission | Token lacks the subscribers permission |