curl https://api.60db.ai/billing/current-plan \
-H "Authorization: Bearer your-api-key"
const currentPlan = await client.getCurrentPlan();
current_plan = client.get_current_plan()
{
"plan": {
"id": "pro",
"name": "Pro",
"price": 29
},
"billing_cycle": "monthly",
"next_billing_date": "2026-02-29T00:00:00Z"
}
Billing
Get Current Plan
Get the current subscription plan
GET
/
billing
/
current-plan
curl https://api.60db.ai/billing/current-plan \
-H "Authorization: Bearer your-api-key"
const currentPlan = await client.getCurrentPlan();
current_plan = client.get_current_plan()
{
"plan": {
"id": "pro",
"name": "Pro",
"price": 29
},
"billing_cycle": "monthly",
"next_billing_date": "2026-02-29T00:00:00Z"
}
Request
Headers
string
required
Bearer token with your API key
Response
object
Current plan object
string
Plan ID
string
Plan name
number
Monthly price
string
Billing cycle: “monthly” or “annual”
string
Next billing date
curl https://api.60db.ai/billing/current-plan \
-H "Authorization: Bearer your-api-key"
const currentPlan = await client.getCurrentPlan();
current_plan = client.get_current_plan()
{
"plan": {
"id": "pro",
"name": "Pro",
"price": 29
},
"billing_cycle": "monthly",
"next_billing_date": "2026-02-29T00:00:00Z"
}