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>"
}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>"
}payg, starter, growth, scale, enterprise.active, past_due, cancelled.null if cancelled.curl https://api.tusky.io/v2/billing/subscription \
-H "Api-Key: YOUR_API_KEY"
{
"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"
}