curl "https://api.scanova.io/plans/available/?search=pro" \
-H "Authorization: 401f7ac837da42b97f613d789819ff93537bee6a"
{
"count": 1,
"next": null,
"previous": null,
"results": [
{
"id": 275,
"slug": "pro-scanova-io",
"name": "Pro - scanova.io",
"plan_type": "Normal",
"description": "",
"version": 1,
"family": { "id": 12, "slug": "pro", "name": "Pro", "is_enterprise": false },
"quotas": [
{ "quota_id": 401, "codename": "QR_CODE_LIMIT", "name": "QR Code Limit", "description": "", "unit": "count", "is_boolean": false, "value": 100 }
],
"is_enterprise_plan": false,
"is_custom_plan": false
}
]
}
Analytics & Plans
List available plans
GET /plans/available/
GET
/
plans
/
available
/
curl "https://api.scanova.io/plans/available/?search=pro" \
-H "Authorization: 401f7ac837da42b97f613d789819ff93537bee6a"
{
"count": 1,
"next": null,
"previous": null,
"results": [
{
"id": 275,
"slug": "pro-scanova-io",
"name": "Pro - scanova.io",
"plan_type": "Normal",
"description": "",
"version": 1,
"family": { "id": 12, "slug": "pro", "name": "Pro", "is_enterprise": false },
"quotas": [
{ "quota_id": 401, "codename": "QR_CODE_LIMIT", "name": "QR Code Limit", "description": "", "unit": "count", "is_boolean": false, "value": 100 }
],
"is_enterprise_plan": false,
"is_custom_plan": false
}
]
}
Lists plans visible/available on the Management API host (
Results are paginated. This is the catalog view — public/available plans, plus any plan customized specifically for the calling account, if one exists. It does not include pricing (amounts, billing periods) — see Get a plan’s pricing options for that, per plan
api.scanova.io), authenticated with your raw Management API key — see the overview if you haven’t set that up yet.
GET https://api.scanova.io/plans/available/
Authorization: 401f7ac837da42b97f613d789819ff93537bee6a
string
Case-insensitive substring match on plan name.
curl "https://api.scanova.io/plans/available/?search=pro" \
-H "Authorization: 401f7ac837da42b97f613d789819ff93537bee6a"
{
"count": 1,
"next": null,
"previous": null,
"results": [
{
"id": 275,
"slug": "pro-scanova-io",
"name": "Pro - scanova.io",
"plan_type": "Normal",
"description": "",
"version": 1,
"family": { "id": 12, "slug": "pro", "name": "Pro", "is_enterprise": false },
"quotas": [
{ "quota_id": 401, "codename": "QR_CODE_LIMIT", "name": "QR Code Limit", "description": "", "unit": "count", "is_boolean": false, "value": 100 }
],
"is_enterprise_plan": false,
"is_custom_plan": false
}
]
}
id.
Related
- Get a plan’s pricing options — pricing for one of these plans.
- Current plan — the account’s active plan, in more billing-focused detail.
- Preview a plan downgrade’s impact — check before switching to one of these plans.
- Management API overview — the auth scheme and quota rules that apply to this endpoint.
Authorizations
Send your Management API key as the raw value of the Authorization header — no "Bearer " or "Token " prefix, and no other characters. Example: Authorization: 401f7ac837da42b97f613d789819ff93537bee6a. A header containing more than one space-separated part is rejected outright. Requests also require the request's Host header to be the management API host (e.g. api.scanova.io) — the same key sent to the regular API host will not authenticate.
Query Parameters
Response
200 - application/json
Paginated list of plans, each with its quota grants.
Was this page helpful?