Get the authenticated user's subscription plan, credit usage, and concurrency limit
get_my_subscriptionRetrieve your Typecast subscription details including plan tier, credit usage, and concurrency limit.
Instructions
Get the authenticated user's subscription information.
Calls GET /v1/users/me/subscription and returns the plan tier, credits
(used / total), and concurrency limit.
Returns:
Dict with this shape:
{
"plan": "free" | "lite" | "plus" | "custom",
"credits": {"plan_credits": int, "used_credits": int},
"limits": {"concurrency_limit": int}
}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||