Skip to main content
GET
/
v1
/
public
/
accounts
/
{account_id}
/
billing
/
current-plan
Get Current Plan
curl --request GET \
  --url https://api.hybridbox.io/v1/public/accounts/{account_id}/billing/current-plan \
  --header 'Authorization: Bearer <token>'
{
  "billing_period": "<string>",
  "currency": "<string>",
  "plan_id": "<string>",
  "plan_name": "<string>",
  "price": "<string>",
  "status": "<string>",
  "can_cancel_plan": false,
  "can_change_plan": false
}

Documentation Index

Fetch the complete documentation index at: https://hybridbox.mintlify.app/llms.txt

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

Authorizations

Authorization
string
header
required

Public API bearer credential sent as Authorization: Bearer <token>. Use either an OAuth access token or a Hybridbox Service account token.

Path Parameters

account_id
string<uuid>
required

Response

billing_period
string
required

Billing period for the current plan

currency
string
required

Billing currency code

plan_id
string
required

Current billing plan ID

plan_name
string
required

Current billing plan name

price
string
required

Current plan price

Pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
status
string
required

Current plan status

can_cancel_plan
boolean
default:false

Whether the plan can be cancelled

can_change_plan
boolean
default:false

Whether the plan can be changed