Skip to main content
GET
/
v2
/
billing
/
subscription
Get Subscription
curl --request GET \
  --url https://api.tusky.io/v2/billing/subscription
{
  "plan": "<string>",
  "status": "<string>",
  "limits": {
    "transactionsPerMonth": 123,
    "bandwidthPerMonth": 123
  },
  "currentPeriod": {
    "start": "<string>",
    "end": "<string>"
  },
  "renewsAt": "<string>"
}
Retrieve the current subscription plan and status.

Response

plan
string
Current plan: payg, starter, growth, scale, enterprise.
status
string
Subscription status: active, past_due, cancelled.
limits
object
currentPeriod
object
renewsAt
string
Next renewal date, or null if cancelled.

Example

curl https://api.tusky.io/v2/billing/subscription \
  -H "Api-Key: YOUR_API_KEY"

Response

{
  "plan": "growth",
  "status": "active",
  "limits": {
    "transactionsPerMonth": 10000,
    "bandwidthPerMonth": 107374182400
  },
  "currentPeriod": {
    "start": "2026-03-01T00:00:00Z",
    "end": "2026-03-31T23:59:59Z"
  },
  "renewsAt": "2026-04-01T00:00:00Z"
}