REST API

API de valoraciones

Integra el tasador ARST directamente en tu flujo. Autenticación por API key, respuesta en JSON, sin SDK propietario.

https://rv.arstdata.com/api/v1
Ver referencia de endpoints Obtener API key

Autenticación

Los endpoints de valoración requieren un API key en el header Authorization.

Authorization: Bearer sk_live_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

Formato

Bearer token (sk_live_…)

Crédito

1 por vehículo tasado (/valuation, /comparable, /batch) · /pdf y los endpoints públicos no consumen créditos

Rate limit (burst)

300 req/min por API key

Alternativa

Cookie arst_token (sesión web)

Cuota diaria por plan

Free10 / día
Starter500 / día
Growth2.000 / día
Pro10.000 / día
Business / AnnualIlimitado

Además del burst de 300 req/min, cada API key tiene un tope de llamadas por día que se reinicia a las 00:00 UTC. Al superarlo, la API responde 429 con el header Retry-After.

Genera tu API key en Mi cuenta → API Keys. El valor en claro se muestra solo al crear la key.

Endpoints

Códigos de error

HTTPCausa
401API key ausente, inválida o revocada
402Sin créditos: recarga en /pricing
403Tu plan no incluye este endpoint (p. ej. /comparable o /batch en plan Free)
422Parámetros inválidos (país, combustible…)
429Cuota diaria o rate limit superados — respeta el header Retry-After
503Modelo no disponible para ese país

Ejemplo rápido

CURL
curl -X POST 'https://rv.arstdata.com/api/v1/valuation' \
  -H 'Authorization: Bearer sk_live_YOUR_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
    "country": "ES",
    "brand": "BMW",
    "model": "320D",
    "year": 2020,
    "km": 65000,
    "fuel": "diesel",
    "current_price": 25000
  }'

Límites de uso

Rate limit300 req/min/key (burst)
Cuota diariasegún plan — ver tabla
Timeout60 s (primera carga ~5–20 s)
Payload max8 KB
PaísesES DE FR IT NL AT BE PT GB NO SE FI PL
Combustiblesdiesel · petrol · electric · hybrid · lpg

Ver referencia de endpoints

Rutas, parámetros y ejemplos de respuesta en esta página

Genera tu API key

Mi cuenta → API Keys → Nueva clave