Brazil's official reference price table for vehicles (Tabela FIPE) — brands, models, and current reference
prices. Currently scoped to cars (motorcycles/trucks share the same shape, coming later).
curl "https://api.mcp-dados-br.dev/v1/fipe/cars/brands" \ -H "X-API-Key: $KEY"
[{ "code": "59", "name": "VW - VolksWagen" }, { "code": "1", "name": "Acura" }, ...]
curl "https://api.mcp-dados-br.dev/v1/fipe/cars/brands/59/models" \ -H "X-API-Key: $KEY"
curl "https://api.mcp-dados-br.dev/v1/fipe/cars/brands/1/models/1" \ -H "X-API-Key: $KEY"
{
"vehicleType": "cars",
"brand": { "code": "1", "name": "Acura" },
"model": { "code": "1", "name": "Integra GS 1.8" },
"modelYear": 1992,
"fuel": "Gasolina",
"fipeCode": "038003-6",
"referenceMonth": "julho de 2026",
"price": 15000,
"priceText": "R$ 15.000,00"
}
| Code | HTTP | Meaning |
|---|---|---|
invalid_input | 400 | Missing brandCode/modelCode, or bad vehicle type. |
not_found | 404 | Brand/model code doesn't exist, or no price sample yet. |
rate_limited | 429 | Anonymous per-IP daily cap reached. |
payment_required | 402 | Monthly API-key quota exhausted. |
Tabela FIPE (Fundação Instituto de Pesquisas Econômicas), via the community fipe.parallelum.com.br API (MIT-licensed).