Brazilian Vehicles and Prices
Brazil's official FIPE car, bike, and truck price tables
This community API wraps Brazil's FIPE reference price tables for cars, motorcycles, and trucks. Walk from brands to models to model-years and read the average market price, all as keyless JSON. Great for Brazilian automotive pricing and valuation tools.
GET https://parallelum.com.br/fipe/api/v1/carros/marcas
[
{
"codigo": "1",
"nome": "Acura"
},
{
"codigo": "6",
"nome": "Audi"
}
]curl "https://parallelum.com.br/fipe/api/v1/carros/marcas"const res = await fetch("https://parallelum.com.br/fipe/api/v1/carros/marcas");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://parallelum.com.br/fipe/api/v1/carros/marcas")
print(res.json())/carros/marcasPROBEDBrazil's official FIPE car, bike, and truck price tables
/carrosCarros — documented GET route.
/carros/1Carros details by ID (example: 1).
/carros?limit=10Carros — documented GET route.
/carros/search?q=testSearch by query parameters.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
Brazilian Vehicles and Prices: common questions
Is Brazilian Vehicles and Prices free to use?
Yes — Brazilian Vehicles and Prices is a free transport API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Brazilian Vehicles and Prices need an API key?
No — Brazilian Vehicles and Prices needs no API key or signup. You can call it straight away; rate limits still apply (Retry-After: 78836s).
Can I call Brazilian Vehicles and Prices from the browser?
Yes — Brazilian Vehicles and Prices returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is Brazilian Vehicles and Prices up right now?
As of our last scheduled check, Brazilian Vehicles and Prices is new. We re-probe it every sweep — the status badge and uptime chart above always show the latest.