Tabela FIPE Data Parser & API
Tabela FIPE is Brazil’s national reference price table for vehicles — the benchmark value used across the market for any make/model/year — and Carapis extracts its reference prices (plus carrosnaweb spec data) through one REST API. Unlike a classifieds portal, FIPE provides standardized reference prices rather than individual listings, making it the anchor for valuation across the entire Brazilian market.
| Country | Brazil |
|---|---|
| Type | Aggregator |
| Owner | FIPE (reference data) |
| Vehicle types | used, new |
| Monthly visits | moderate (reference data) |
| Active listings | reference price table |
| API access | No public API (parse-only) |
| Parse priority | ★★☆☆☆ |
| Official site | veiculos.fipe.org.br |
What is Tabela FIPE?
Tabela FIPE (veiculos.fipe.org.br) is the official reference price table published by Fundação Instituto de Pesquisas Econômicas. It gives a standardized market value for each make, model, trim and year of vehicle in Brazil, identified by a FIPE code, and is the universally accepted pricing benchmark for buying, selling, insuring and financing cars. Paired with carrosnaweb, it also provides spec data.
Market Position
Tabela FIPE is not a marketplace — it is the pricing reference layer beneath Brazil’s entire car market. Every portal, dealer, bank and insurer benchmarks against FIPE values, so FIPE reference prices are the natural anchor for any valuation product covering Brazil. Combined with Carapis listing data from Webmotors, Mobiauto and iCarros, FIPE turns raw asking prices into market-relative valuations (above/below reference).
Data Fields Available
Carapis extracts standardized reference data from Tabela FIPE (and carrosnaweb specs):
- Vehicle identity — make, model, trim, model year, fuel type, transmission, body type
- Reference value — FIPE reference price and FIPE code (the standout fields)
- Specification — spec data via carrosnaweb
The FIPE reference price and code are the distinctive value — a national pricing benchmark rather than individual listings.
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "tabela-fipe", "limit": 20},
headers={"Authorization": f"Bearer {API_KEY}"},
)
for car in resp.json()["results"]:
print(car["make"], car["model"], car["year"], car["price"])Get an API key at my.carapis.com and see the full API reference. Pricing is on the pricing page.
Use Cases
- Pricing intelligence — use FIPE reference values to benchmark any Brazilian listing above/below market for dealers.
- Market research — track reference-price movement across makes, models and years in Brazil. See market research.
- Import / export — anchor Brazilian vehicle valuations to the national reference table. See import & export.