Skip to main content
GET
/
cohorts
/
{cohortId}
/
members
List subscribers in a cohort
curl --request GET \
  --url https://api.recurr.dev/v1/cohorts/{cohortId}/members \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "subscriber_01HQ...",
      "email_hashed": "sha256:abc123def456...",
      "created_at": "2023-11-07T05:31:56Z",
      "email": "jsmith@example.com",
      "subscription": {
        "id": "sub_01HQ...",
        "plan": "premium_monthly",
        "current_period_start": "2023-11-07T05:31:56Z",
        "current_period_end": "2023-11-07T05:31:56Z"
      },
      "cohort_ids": [
        "<string>"
      ],
      "tags": [
        "<string>"
      ],
      "metadata": {},
      "total_paid": 123,
      "paid_currency": "USD",
      "last_payment_at": "2023-11-07T05:31:56Z"
    }
  ],
  "has_more": true,
  "next_cursor": "<string>"
}

Authorizations

Authorization
string
header
required

Your Recurr secret API key as a Bearer token: Authorization: Bearer rk_live_….

Keys are environment-scoped — rk_live_ operates on live data, rk_test_ on isolated test data (see Test mode). Create, scope, and rotate keys in your dashboard (Settings → API keys, developer role). Secret keys are server-side only — never ship them in an app binary or client JavaScript.

Path Parameters

cohortId
string
required

Query Parameters

limit
integer
default:50

Maximum number of items to return (1-100, default 50).

Required range: 1 <= x <= 100
starting_after
string

Cursor for pagination. Pass the next_cursor from the previous response to fetch the next page.

ending_before
string

Cursor for reverse pagination.

Response

200 - application/json

Cohort members

data
object[]
required
has_more
boolean
required
next_cursor
string | null