Auto.ge Data Parser & API
Auto.ge is a Georgian used-car portal — smaller than the market leader MyAuto.ge — and Carapis extracts its listing data, including spec, mileage, photos and dealer details, through one REST API. A secondary, dealer-focused source, it broadens coverage of the Georgian market, an important re-export hub for the Caucasus and Central Asia.
| Country | Georgia |
|---|---|
| Type | Portal |
| Vehicle types | used, dealer |
| Monthly visits | smaller (than MyAuto.ge) |
| Active listings | — (est.) |
| API access | No public API (parse-only) |
| Parse priority | ★★☆☆☆ |
| Official site | auto.ge |
What is Auto.ge?
Auto.ge is a used-car portal in Georgia carrying dealer listings. It is a secondary player behind the dominant MyAuto.ge. Its traffic is smaller than MyAuto.ge’s.
Market Position
Auto.ge sits behind MyAuto.ge in Georgia, with smaller traffic. Its value is as a complementary dealer-focused source for broadening coverage of the Georgian market — relevant because Georgia re-exports vehicles across the Caucasus and Central Asia. Anti-bot is low, so Carapis serves its data through the same unified endpoint as every other platform.
Data Fields Available
Carapis extracts a structured record from each Auto.ge listing:
- Vehicle identity — make, model, model year, fuel type, transmission
- Condition — mileage
- Pricing — listed price
- Specification — options
- Listing context — dealer / seller info, location, photo gallery
API Quick Start
Python
import requests
resp = requests.get(
"https://api.carapis.com/v2/listings",
params={"source": "auto-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 — broaden Georgian re-export coverage beyond MyAuto.ge. See import & export.
- Pricing intelligence — dealer listings add to pricing models for dealers.
- Market research — track dealer inventory and price trends across Georgia. See market research.