Skip to main content
GET
/
v1
/
billing
/
subscriptions
List subscriptions of the authenticated user
curl --request GET \
  --url http://0.0.0.0:3000/v1/billing/subscriptions \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "sub_abc123",
    "plan_id": 2,
    "status": "active",
    "gateway_provider": "stripe",
    "created_at": "2026-01-01T00:00:00Z"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

User subscriptions

id
string
plan_id
integer
status
enum<string>
Available options:
active,
trialing,
canceled,
past_due
gateway_provider
string
created_at
string<date-time>