Spinny Data Parser & API
Spinny is a leading full-stack online used-car dealer in India — an estimated ~5.6M monthly visits and 10K+ certified inventory — and Carapis extracts its curated listings, including inspection details and condition grades, through one REST API. As a D2C certified dealer (not a classifieds site), Spinny attaches structured inspection data to its cars — among the richer condition data in South Asia — and Carapis serves it without you fighting its JS-heavy bot defences.
| Country | India |
|---|---|
| Type | Online-dealer |
| Owner | Spinny |
| Vehicle types | used |
| Monthly visits | ~5.6M (SimilarWeb Nov 2024) |
| Active listings | 10K+ certified inventory |
| API access | No public API (parse-only) |
| Parse priority | ★★★★☆ |
| Official site | www.spinny.com |
What is Spinny?
Spinny is an Indian online used-car platform that buys, inspects, certifies and resells vehicles directly to consumers. It lists 10K+ certified cars with curated photos and structured inspection data. Spinny is distinct from Carsome (a separate Southeast-Asia-focused company — a common conflation) and is part of India’s used-car IPO pipeline alongside CarDekho and Cars24. SimilarWeb estimated ~5.6M monthly visits (Nov 2024).
Market Position
Spinny is a major independent D2C online-dealer in India, competing with Cars24, Maruti True Value and Mahindra First Choice on certified used-car supply. It is reportedly in a ~$1B India used-car IPO pipeline (PL Capital) alongside CarDekho and Cars24. Its certified, fixed-price model produces inspection-report and condition-grade data — one of the closest South-Asian analogues to inspection-sheet richness, though not as granular as Korean or Japanese auction sheets.
Data Fields Available
Carapis extracts a structured record from each Spinny listing:
- Vehicle identity — make, model, variant, model year, fuel type, transmission
- Condition — mileage, inspection report and condition grade (the standout Spinny fields)
- Pricing — fixed listed price
- Listing context — location, curated photo gallery
Spinny’s inspection and condition data make it valuable for pricing intelligence and remote vetting of certified used cars.
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "spinny", "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 — fixed certified prices and condition grades anchor residual-value models for dealers.
- Remote vetting — inspection-report fields let buyers assess certified cars remotely. See import & export.
- Market research — track certified online-dealer supply and pricing in India. See market research.