Creditas Auto Data Parser & API
Creditas Auto is the fintech-led used-car arm of Brazilian lender Creditas — pairing car sales with financing — and Carapis extracts its available listing data, including make, model, year, mileage and price, through one REST API. It represents the financing-driven slice of Brazil’s used-car market, where the lender and the car listing sit on one platform.
| Country | Brazil |
|---|---|
| Type | Online-dealer |
| Owner | Creditas |
| Vehicle types | used |
| Monthly visits | — (fintech-led) |
| Active listings | — (est.) |
| API access | No public API (parse-only) |
| Parse priority | ★★☆☆☆ |
| Official site | www.creditas.com |
What is Creditas Auto?
Creditas Auto is the automotive vertical of Creditas, a Brazilian fintech lender. It sells used cars alongside financing and auto-secured lending, so its listings are tied directly to credit products. It is a fintech-led online-dealer rather than a high-volume classifieds portal.
Market Position
Creditas Auto is one of Latin America’s online-dealer/fintech challengers, alongside InstaCarro and Karvi. It reflects Brazil’s broader pattern of financing-driven car platforms — the same logic behind the bank-owned portals (Webmotors↔Santander, iCarros↔Itaú, Mobiauto↔Banco Pan), here expressed through a fintech lender rather than a traditional bank. Listing volume is not separately published, making it a lower-priority but distinctive source for the financing-led segment.
Data Fields Available
Carapis extracts the available structured fields from Creditas Auto:
- Vehicle identity — make, model, model year, fuel type, transmission
- Condition — mileage, condition
- Pricing — listed price
- Listing context — location, photo gallery
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "creditas-auto", "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 — Creditas Auto pricing adds a fintech-led signal for dealers in Brazil.
- Market research — track the financing-driven slice of Brazil’s used-car market. See market research.
- Import / export — source Brazilian used inventory tied to financing. See import & export.