Skip to main content
GET
/
subscriptions
Get subscription
curl --request GET \
  --url https://api.veryfront.com/subscriptions \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "project_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "type": "<string>",
  "cycle": "<string>",
  "quantity": 123,
  "status": "<string>",
  "current_period_start": "<string>",
  "current_period_end": "<string>",
  "expires_at": "<string>",
  "canceled_at": "<string>",
  "created_at": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://veryfront.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Use a JWT bearer token or a Veryfront API key in the Authorization header.

Response

Subscription details

id
string<uuid>

Subscription ID

user_id
string<uuid>

User that owns the subscription

project_id
string<uuid> | null

Project this subscription is scoped to, when applicable

type
string

Subscription tier

cycle
string | null

Billing cycle

quantity
number

Seat quantity

status
string

Subscription status

current_period_start
string | null

Current billing period start timestamp

current_period_end
string | null

Current billing period end timestamp

expires_at
string | null

Subscription expiration timestamp

canceled_at
string | null

Subscription cancellation timestamp

created_at
string

Subscription creation timestamp