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"
}
]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"
}
]Bearer authentication header of the form Bearer <token>, where <token> is your auth token.