The /billing
endpoints compliment account dashboard functionality, offering programmatic access to some billing features.
/billing/portal
Get a secure portal login link to upgrade, switch plans or manage subscription.
curl "https://api.modelsync.ai/v1/billing/portal" \
-H "Authorization: Bearer $YOUR_API_KEY"
Response format:
{
"url": "https://modelsync.ai/billing?session_134as7c22",
"expires_at": 1704067200
}
/billing/cancel
Cancel subscription — will remain active until the end of the current billing period.
curl -X POST "https://api.modelsync.ai/v1/billing/cancel" \
-H "Authorization: Bearer $YOUR_API_KEY"
Response format:
{
"status": "cancelled",
"effective_date": 1704067200
}