# Get the current active subscriptioncurl -X GET "https://api.voxmind.ai/organisations/42/subscriptions?sort=start_date:desc&per_page=1" \ -H "Authorization: Bearer YOUR_API_TOKEN" \ -H "Accept: application/json"
Retrieve all subscriptions for your organisation, including current plan, billing period dates, and subscription status.
GET
https://api.voxmind.ai
/
organisations
/
{orgId}
/
subscriptions
Copy
Ask AI
# Get the current active subscriptioncurl -X GET "https://api.voxmind.ai/organisations/42/subscriptions?sort=start_date:desc&per_page=1" \ -H "Authorization: Bearer YOUR_API_TOKEN" \ -H "Accept: application/json"
Returns a list of subscription records for your organisation. In most cases, your organisation will have one active subscription at a time — the history of past subscriptions is accessible here if you need to audit plan changes or billing periods.Subscriptions are managed via the Voxmind dashboard rather than the API — this endpoint is primarily for reading state, not for changing plans. To upgrade or downgrade your plan, use the self-service billing section at developers.voxmind.ai/billing.
# Get the current active subscriptioncurl -X GET "https://api.voxmind.ai/organisations/42/subscriptions?sort=start_date:desc&per_page=1" \ -H "Authorization: Bearer YOUR_API_TOKEN" \ -H "Accept: application/json"