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

# List subscribers

`GET /v1/subscribers`

Retrieve a paginated list of subscribers for your publication. The publication is identified by the API key provided in the Authorization header.

**Response:**
- Returns subscriber email and/or wallet address
- Only active subscribers are returned
- Results are ordered by subscription date (newest first)

## Query parameters

- `cursor` string
- `limit` integer

## Response `200`

Subscribers retrieved successfully

- object
  - `items` object[], required — Array of items in this page
    - `email` string, email — Email address of the subscriber
    - `walletAddress` string — Wallet address of the subscriber
    - `createdAt` number, required — Timestamp when the subscription was created
  - `pagination` object, required
    - `cursor` string — Cursor for fetching the next page of results
    - `hasMore` boolean, required — Whether more results are available
    - `total` number — Total number of items available

## Other responses

- `401` — Invalid or missing API key
- `500` — Internal server error

---

[API](https://skmtc.net/paragraph-xyz/apis/paragraph-api.md) · [All operations](https://skmtc.net/paragraph-xyz/apis/paragraph-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/paragraph-xyz/paragraph-api/versions/7bbf1b62c1a0/schema)
