---
title: "Get subscribers"
method: GET
path: "/v1/subscribers"
tags: ["Subscribers"]
---

# Get subscribers

`GET /v1/subscribers`

Returns a list of subscribers, could paginated using the `page` and `limit` query parameter

## Query parameters

- `page` number
- `limit` number

## Response `200`

- object
  - `page` number, required — The current page of the paginated response
  - `hasMore` boolean, required — Does the list have more items to fetch
  - `pageSize` number, required — Number of items on each page
  - `data` object[], required — The list of items matching the query
    - `_id` string — The internal id omni-link generated for your subscriber, this is not the subscriberId matching your query. See `subscriberId` for that
    - `firstName` string
    - `lastName` string
    - `email` string
    - `phone` string
    - `whatsappNumber` string
    - `locale` string
    - `subscriberId` string, required — The internal identifier you used to create this subscriber, usually correlates to the id the user in your systems
    - `isOnline` boolean
    - `lastOnlineAt` string
    - `_organizationId` string, required
    - `_environmentId` string, required
    - `deleted` boolean, required
    - `createdAt` string, required
    - `updatedAt` string, required
    - `__v` number

---

[API](https://skmtc.dev/cequens/apis/authentication.md) · [All operations](https://skmtc.dev/cequens/apis/authentication/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/cequens/authentication/revisions/deadb0661f19/schema)
