---
title: "List subscribers"
method: GET
path: "/subscribers"
tags: ["subscribers"]
---

# List subscribers

`GET /subscribers`

Returns a list of subscribers in a paginated manner. Each object in the `collection` represents a Subscriber.
This endpoint should always return a result even if there are zero subscribers in the collection.

## Query parameters

- `per_page` integer
- `ending_before` string
- `starting_after` string
- `scopes` object

## Response `200`

OK

- object
  - `per_page` integer — Number of objects that are present in the collection.
  - `total` integer — Total number of objects.
  - `links` object
    - `previous` string, nullable — Link to the previous set of results.
    - `next` string, nullable — Link to the next set of results.
  - `collection` BaseSubscriber[]
    - `id` integer — The ID of the resource.
    - `created_at` string, date-time — The date and time when the resource was created.
    - `updated_at` string, date-time — The date and time when the resource was last updated.
    - `name` string — The name of the subscriber.
    - `email` string — The email of the subscriber.
    - `metadata` object — Metadata associated with the subscriber.
    - `blacklisted` boolean — Flag that indicates if the subscriber has been blacklisted (unsubscribed, marked email as spam, bounced).
    - `active` boolean — Flag that indicates if the subscriber is active or not (we send e-mails only to active subscribers).

## Other responses

- `401` — Unauthorized
- `default` — Unexpected error

## Changes

- **2021-06-19** `d928368b88a9` — 1 info
  - endpoint added
- **2021-05-18** `c686bd33a4a5` — 1 breaking
  - api path removed without deprecation

[Change history](https://skmtc.dev/mailbadger/apis/mailbadger-api/changes/subscribers/get.md)

---

[API](https://skmtc.dev/mailbadger/apis/mailbadger-api.md) · [All operations](https://skmtc.dev/mailbadger/apis/mailbadger-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/mailbadger/mailbadger-api/revisions/3a7ef49250a1/schema)
