MyAuto.ge Data Parser & API
MyAuto.ge is Georgia’s #1 car portal — an estimated few million visits per month — and Carapis extracts its full listing data, including a VIN-check service (odometer, accidents, recalls, defects), spec, mileage and photos, through one REST API. With 19+ years in the market and built-in VIN history, MyAuto.ge offers unusually rich condition data for a small market — valuable because Georgia is a re-export hub for the Caucasus and Central Asia.
| Country | Georgia |
|---|---|
| Type | Portal |
| Vehicle types | used, dealer, private |
| Monthly visits | ~few M/mo (est.; #11.7K global Nov 2025) |
| Active listings | ~tens of K+ |
| API access | No public API (parse-only) |
| Parse priority | ★★★☆☆ |
| Official site | www.myauto.ge |
What is MyAuto.ge?
MyAuto.ge is the leading car portal in Georgia, operating for 19+ years with dealer and private listings plus financing tools. Its standout feature is a built-in VIN-check service exposing odometer, accident, recall and defect data. MyAuto.ge draws an estimated few million visits per month (ranked ~#11.7K globally, Nov 2025) with tens of thousands of listings.
Market Position
MyAuto.ge leads the Georgian auto market ahead of Auto.ge, with an estimated few-million monthly visits. Its strategic importance outweighs its market size: Georgia is a major re-export hub funneling vehicles to the Caucasus and Central Asia, and MyAuto.ge’s VIN-check data (odometer, accidents, recalls, defects) is exactly what import/export buyers need. Anti-bot is low, so Carapis serves its rich condition data through the same unified endpoint as every other platform.
Data Fields Available
Carapis extracts a structured record from each MyAuto.ge listing:
- Vehicle identity — make, model, trim, model year, fuel type, transmission
- Condition — mileage and VIN-check data (the standout field: odometer, accidents, recalls, defects)
- Pricing — listed price
- Specification — factory options and trim
- Listing context — dealer / seller info, location, photo gallery
The VIN-check data is unusually rich for a small market and makes MyAuto.ge a prime source for vetting re-export inventory.
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "myauto-ge", "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
- Import / export — Georgia is a re-export hub; VIN-check data lets exporters vet and price vehicles remotely. See import & export.
- Pricing intelligence — listing and condition data power pricing models for dealers.
- Market research — track inventory mix and price trends across the Georgian used-car market. See market research.