Request
Send a POST request to the below endpoint to retrieve all subscriptions associated with your enterprise account.
--request POST 'https://modelslab.com/api/v1/enterprise/subscriptions' \
Body
{
"key": "enterprise_api_key"
}
Body Attributes
Your enterprise API Key used for request authorization.
Response
{
"status": "success",
"subscriptions": [
{
"plan": "premium",
"name": "Enterprise Premium",
"created_at": "2026-06-01 10:22:04",
"next_billing_date": "2026-07-01",
"server": { "name": "swift-falcon", "status": "live" }
}
]
}
Response Attributes
The status of the request. Returns success when the subscriptions are retrieved successfully.
A list of your enterprise subscriptions. Each item contains the following fields:
The plan identifier of the subscription (e.g. premium).
The display name of the subscription plan.
The date and time the subscription was created.
The date of the next billing cycle for the subscription.
Details of the server associated with the subscription.
The current status of the server (e.g. live).