ArcalotlArcalotl
Purchases

List purchases

Returns a keyset page of the community's one-time purchases, newest first.

Serverhttps://api.arcalotl.com
GET
/v1/purchases
AuthorizationBearer <token>

Community-scoped API key. Send it as Authorization: Bearer arclt_live_.... Keys carry scopes; endpoints that need a specific scope answer 403 missing_scope when the key lacks it.

In: header

Query Parameters

cursor?string

Opaque keyset cursor copied verbatim from a previous response's next_cursor. Omit it to fetch the first page.

limit?integer

Page size, capped at 100.

Default25
Range1 <= value <= 100

Response Body

application/json

application/problem+json

application/problem+json

curl -X GET "https://example.com/v1/purchases?cursor=eyJpZCI6IjAxSk1aWDQ3In0&limit=25"
{
  "data": [
    {
      "id": "pur_01JMZX9E7P",
      "status": "completed",
      "plan_id": "plan_01JMZX3B2K",
      "tier_id": "tier_01JMZX2A9F",
      "member_id": "mem_01JMZX1Z7D",
      "amount_cents": 4900,
      "currency": "usd",
      "access_expires_at": "2027-05-01T00:00:00Z",
      "paid_at": "2026-05-01T12:00:05Z",
      "created_at": "2026-05-01T12:00:00Z"
    }
  ],
  "next_cursor": "eyJpZCI6InB1cl8wMUpNWlg5RSJ9"
}
{
  "type": "https://docs.arcalotl.com/api/errors#not_found",
  "title": "Not Found",
  "status": 404,
  "detail": "The requested resource was not found.",
  "code": "not_found"
}
{
  "type": "https://docs.arcalotl.com/api/errors#not_found",
  "title": "Not Found",
  "status": 404,
  "detail": "The requested resource was not found.",
  "code": "not_found"
}