Truebil Data Parser & API
Truebil is an Indian online used-car dealer with a curated, inspected inventory — and Carapis extracts its listings, including inspection details and price, through one REST API. A smaller D2C player than Cars24 or Spinny, Truebil focuses on hand-picked, certified used cars, and Carapis serves the data without you building a scraper.
| Country | India |
|---|---|
| Type | Online-dealer |
| Owner | Truebil |
| Vehicle types | used |
| Monthly visits | — (small) |
| Active listings | curated used inventory |
| API access | No public API (parse-only) |
| Parse priority | ★★☆☆☆ |
| Official site | www.truebil.com |
What is Truebil?
Truebil is an Indian online used-car platform that sells a curated selection of inspected, certified used cars. It is a smaller D2C online-dealer compared with Cars24 and Spinny, emphasising quality and verification over volume. Traffic is modest.
Market Position
Truebil sits among India’s independent D2C online-dealers alongside the larger Cars24 and Spinny. Its curated, inspection-backed model means cleaner per-listing data — condition and inspection fields — at lower volume. In a market where the big aggregators dominate by scale, Truebil adds a smaller pool of verified certified used cars. India’s used-car market is estimated at ~USD 36B (2025).
Data Fields Available
Carapis extracts a structured record from each Truebil listing:
- Vehicle identity — make, model, variant, model year, fuel type, transmission
- Condition — mileage, inspection report (the standout Truebil field for certified cars)
- Pricing — listed price
- Listing context — location, curated photo gallery
Truebil’s inspection data makes it useful for pricing intelligence and remote vetting of certified used cars, complementing larger D2C dealers.
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "truebil", "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 — certified prices and inspection data anchor valuation models for dealers.
- Remote vetting — inspection fields support remote assessment of certified cars. See import & export.
- Market research — track curated online-dealer supply in India. See market research.