AUTO API - Car Listings API for Encar, Mobile.de & More
Professional automotive scraper & parser
Access real-time and daily aggregated car listing data via a single, reliable API.
Monitor new listings, price changes, publication, and removals in real time across platforms.
One API for All Major Car Marketplaces
Stop building and maintaining your own scrapers.
Get organized car data from major platforms through a single API.
Daily Car Market Exports
Track the entire market daily. Get all active and sold car listings from major global platforms in CSV, JSON, or Excel format.
Custom automotive data exports in your preferred format (CSV, JSON, XML)
Automated daily delivery via API or direct file transfer
Platform | Supported Exports | Quality | Status |
---|---|---|---|
ENCAR.COM Korea | API / JSON / CSV / EXCEL | Verified | COMPLETED |
MOBILE.DE Germany | API / JSON / CSV / EXCEL | Verified | COMPLETED |
CHE168.COM China | API / JSON / CSV / EXCEL | Verified | COMPLETED |
AUTOSCOUT24.COM Europe | API / JSON / CSV / EXCEL | Verified | COMPLETED |
DUBIZZLE.COM UAE | API / JSON / CSV / EXCEL | Verified | COMPLETED |
DONGCHEDI.COM China | API / JSON / CSV / EXCEL | Verified | COMPLETED |
Exports: API / JSON / CSV / EXCEL
Exports: API / JSON / CSV / EXCEL
Exports: API / JSON / CSV / EXCEL
Exports: API / JSON / CSV / EXCEL
Exports: API / JSON / CSV / EXCEL
Exports: API / JSON / CSV / EXCEL
Daily exports of all active and removed car listings from major car platforms. Use these feeds for market analysis, inventory tracking, and price monitoring.
Data Retention
Your daily export files are stored and accessible for 3 days
CSV Format
CSV files use a pipe delimiter (|) for column separation
URL Structure:
Request Parameters:
- personal_name - your assigned subdomain identifier
- date - target date in yyyy-mm-dd format (e.g., 2025-09-06)
- file_name - export file name with extension
Available Formats:
- CSV - all_active.csv, new_daily.csv, removed_daily.csv
- JSON - all_active.json, new_daily.json, removed_daily.json
- Excel - all_active.xlsx, new_daily.xlsx, removed_daily.xlsx
- And other formats - available upon request
cURL Download Command
curl -L -X GET 'https://{personal_name}.auto-api.com/yyyy-mm-dd/all_active.csv' \
-H 'Authorization: Basic XXX' \
-o all_active.csv
Wget Download Command
wget --method GET \
--header 'Authorization: Basic XXX==' \
'https://{personal_name}.auto-api.com/yyyy-mm-dd/all_active.csv'
Access real-time car data from multiple classifieds with API
Simple REST API integration with automotive data from major platforms
Get Real-time Listings
Retrieve paginated car listings with full vehicle data including prices, specs and seller details. Use pagination to handle large datasets. Good for building inventory systems or market analysis tools.
Request Parameters:
- api_key - your personal API key
- from_id - change ID to start retrieving data from. For the first request use 0, for subsequent requests use the ID of the last received change + 1
Response Parameters:
- inner_id - permanent listing ID on website
- change_type - event type: "added" (published), "changed" (price changed), "removed" (unpublished)
- created_at - event timestamp
curl -X GET "https://auto-api.com/api/v1/encar/changes?from_id=0" \
-H "Authorization: Bearer YOUR_API_KEY"
{
"result": [
{
"id": 3219435,
"inner_id": "40417324",
"change_type": "added",
"created_at": "2025-08-31T19:39:18.380",
"data": {
"id": "1452541",
"inner_id": "40417324",
"url": "http://www.encar.com/dc/dc_cardetailview.do?carid=40417324",
"mark": "Hyundai",
"model": "Santa Fe",
"generation": "Gasoline 2.0 Turbo 4WD",
"configuration": "Gasoline 2.0 Turbo 4WD",
"complectation": "Value Plus",
"year": "2018",
"color": "Gray",
"price": "18200000",
"km_age": "54176",
"engine_type": "Gasoline",
"transmission_type": "Automatic",
"body_type": "SUV",
"address": "Daegu Seogu Munhwa-ro 37",
"seller_type": "DEALER",
"is_dealer": "true",
"section": "used",
"seller": "mans1818",
"salon_id": "05062369014",
"description": "Hello. This is the largest used car market in southern Yeongnam...",
"displacement": "1998.0",
"offer_created": "2025-08-31T19:09:22.000",
"modelName": "Santa Fe The Prime",
"yearMonth": "201712",
"images": [{"code":"001","path":"/carpicture01/pic4041/40417324_001.jpg","type":"OUTER"},...,...],
"advertisementType": "NORMAL",
"created_at": "2025-08-17T05:18:34.946",
"extra": "{diagnosis:{...},inspection:{...},accidents:[...]}",
"options": {"standard":["001","003","004"],"choice":["1015"]}
}
},
{
"id": 3219436,
"inner_id": "39969819",
"change_type": "changed",
"created_at": "2025-08-17T05:19:34.442",
"data": {
"new_price": 34900000
}
},
{
"id": 3219437,
"inner_id": "39971229",
"change_type": "removed",
"created_at": "2025-08-17T05:19:39.778"
}
],
"meta": {
"cur_from_id": "3219435",
"limit": 10
}
}
Get Vehicle Catalog
Retrieve the full catalog of available makes, models, generations and configurations. This endpoint provides vehicle taxonomy data for building search filters, dropdowns, and selection interfaces. Works well for dynamic search forms with hierarchical vehicle data.
Response Schema:
make: {
model: {
generation: {
configuration: ["complectation"]
}
}
}
}
Response Parameters:
- make - vehicle brand (e.g., "Kia", "Hyundai")
- model - vehicle model (e.g., "Seltos", "Sportage")
- generation - generation with years (e.g., "1st Generation (2019-present)")
- configuration - engine/drivetrain configuration (e.g., "Gasoline 1.6 Turbo 2WD")
- complectation - trim levels array (e.g., ["Trendy", "Smart", "Prestige"])
curl -X GET "https://auto-api.com/api/v1/{encar|mobilede|che168|autoscout24|dongchedi}/catalog" \
-H "Authorization: Bearer YOUR_API_KEY"
{
"Kia": {
"Seltos": {
"1st Generation (2019-present)": {
"Gasoline 1.6 Turbo 2WD": [
"Trendy",
"Smart",
"Prestige",
"Gravity"
],
"Gasoline 1.6 Turbo AWD": [
"Smart",
"Prestige",
"Gravity"
]
}
},
"Sportage": {
"5th Generation (2022-present)": {
"Gasoline 1.6 Turbo": [
"Modern",
"Premium",
"Signature"
],
"Hybrid 1.6": [
"Premium",
"Signature"
]
}
}
},
"Hyundai": {
"Tucson": {
"4th Generation (2021-present)": {
"Gasoline 1.6 Turbo": [
"Inspiration",
"Premium",
"Prestige"
],
"Hybrid 1.6": [
"Premium",
"Prestige"
]
}
},
"Santa Fe": {
"4th Generation (2018-present)": {
"Gasoline 2.5": [
"Modern",
"Premium",
"Calligraphy"
]
}
}
}
}
Built for Car Data Professionals
Direct API access to major car platforms worldwide. No scrapers to maintain.
Multi-Platform Data
Pull car listings from Encar, Mobile.de, AutoScout24, and more through one API.
Real-time Updates
Get new listings, price changes, and removals as they happen.
Market Analytics
Historical data and trends for pricing analysis and market research.
Flexible Delivery
Choose between real-time API access or daily bulk exports in CSV, JSON, Excel.
Global Markets
Coverage across Europe, Asia, Middle East, and North America.
Simple Integration
RESTful API with documentation and working code examples.