CNPJ CEP FIPE

FIPE — vehicle reference prices

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).

fipe_brands (MCP tool) / GET /v1/fipe/:type/brands (REST)

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" }, ...]

fipe_models (MCP tool) / GET /v1/fipe/:type/brands/:brandCode/models (REST)

curl "https://api.mcp-dados-br.dev/v1/fipe/cars/brands/59/models" \
  -H "X-API-Key: $KEY"

fipe_vehicle (MCP tool) / GET /v1/fipe/:type/brands/:brandCode/models/:modelCode (REST)

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"
}

Errors

CodeHTTPMeaning
invalid_input400Missing brandCode/modelCode, or bad vehicle type.
not_found404Brand/model code doesn't exist, or no price sample yet.
rate_limited429Anonymous per-IP daily cap reached.
payment_required402Monthly API-key quota exhausted.

Source & license

Tabela FIPE (Fundação Instituto de Pesquisas Econômicas), via the community fipe.parallelum.com.br API (MIT-licensed).