curl "https://api.scanova.io/plans/275/pricing/" \
-H "Authorization: 401f7ac837da42b97f613d789819ff93537bee6a"
{
"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 },
"pricing": [
{ "id": 501, "pricing": { "id": 2, "name": "Monthly", "period": "month" }, "price": "29.00" },
{ "id": 502, "pricing": { "id": 3, "name": "Yearly", "period": "year" }, "price": "290.00" }
]
}
Analítica y planes
Obtener las opciones de precio de un plan
GET /plans//pricing/
GET
/
plans
/
{id}
/
pricing
/
curl "https://api.scanova.io/plans/275/pricing/" \
-H "Authorization: 401f7ac837da42b97f613d789819ff93537bee6a"
{
"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 },
"pricing": [
{ "id": 501, "pricing": { "id": 2, "name": "Monthly", "period": "month" }, "price": "29.00" },
{ "id": 502, "pricing": { "id": 3, "name": "Yearly", "period": "year" }, "price": "290.00" }
]
}
Devuelve las filas de precio de un plan en el host de la API de gestión (
Los mismos campos de plan que en Listar planes disponibles, menos
api.scanova.io), autenticado con tu clave sin procesar de la API de gestión.
GET https://api.scanova.io/plans/{id}/pricing/
Authorization: 401f7ac837da42b97f613d789819ff93537bee6a
integer
requerido
El
id numérico del plan, de Listar planes disponibles.curl "https://api.scanova.io/plans/275/pricing/" \
-H "Authorization: 401f7ac837da42b97f613d789819ff93537bee6a"
{
"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 },
"pricing": [
{ "id": 501, "pricing": { "id": 2, "name": "Monthly", "period": "month" }, "price": "29.00" },
{ "id": 502, "pricing": { "id": 3, "name": "Yearly", "period": "year" }, "price": "290.00" }
]
}
quotas — este endpoint trata sobre precio, no sobre derechos. pricing lista solo las filas de precio activas/visibles del plan; price es una cadena decimal en la moneda configurada del plan (no se devuelve por moneda aquí — consulta el país/moneda de facturación de tu cuenta por separado). 404 si el id del plan no existe o no es visible/disponible para quien llama.
Relacionado
- Listar planes disponibles — encuentra un
idde plan para consultar su precio. - Plan actual — el estado real actual de precio/facturación de la cuenta.
- Resumen de la API de gestión — el esquema de autenticación y las reglas de cuota que aplican a este endpoint.
Autorizaciones
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.
Parámetros de ruta
The plan's numeric id, from GET /plans/available/.
Respuesta
Plan detail with its active pricing rows.
¿Esta página le ayudó?