Get a subscription
Returns one subscription by id. Unknown or cross-community ids answer 404.
Authorization
apiKey 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
Path Parameters
Response Body
application/json
application/problem+json
application/problem+json
application/problem+json
curl -X GET "https://example.com/v1/subscriptions/string"{
"id": "sub_01JMZX47H8Q2C9R4T1",
"status": "active",
"plan_id": "plan_01JMZX3B2K",
"tier_id": "tier_01JMZX2A9F",
"member_id": "mem_01JMZX1Z7D",
"amount_cents": 1500,
"currency": "usd",
"interval": "month",
"current_period_end": "2026-08-01T00:00:00Z",
"cancel_at": "2026-08-01T00:00:00Z",
"paused_until": "2019-08-24T14:15:22Z",
"created_at": "2026-05-01T12:00:00Z",
"updated_at": "2026-07-01T12:00:00Z"
}{
"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"
}{
"type": "https://docs.arcalotl.com/api/errors#not_found",
"title": "Not Found",
"status": 404,
"detail": "The requested resource was not found.",
"code": "not_found"
}GETList subscriptions
Returns a keyset page of the community's subscriptions, newest first. Filter by status, plan, tier, or member.
POSTCancel a subscription at period end
Schedules a period-end cancellation. The member keeps access until the current period ends, then the subscription transitions to cancelled. Idempotent: a subscription already cancelling returns 202 without another provider call. Supply an `Idempotency-Key` header to make retries safe.