Documentation
EnCarAPI documentation. Learn how to access Korean car data via direct API endpoints. Integration guides and code examples.
Industry Experience
Automotive data API provider with years of experience in the Korean market.
7-Day Support
Support team available 7 days a week for API integration help.
24/7 Service
Round-the-clock monitoring for reliable data delivery.
Real-Time Listing Alerts
Get instant API access to new car listings as they're posted.
Daily Data Exports
Get daily exports of active and removed listings for market analysis.
Flexible Export Formats
Get data in CSV, JSON, Excel, and custom formats for easy integration.
Base URL
All API requests are made to the following base URL:
https://encarapi.com/api/v2/encarFor example, to fetch offers:
GET https://encarapi.com/api/v2/encar/offers?page=1&api_key=YOUR_API_KEYAuthentication
Authenticate your requests using an API key. Pass it as a query parameter or via the Authorization header.
GET https://encarapi.com/api/v2/encar/offers?api_key=YOUR_API_KEY
# Or via header:
curl -H "Authorization: Bearer YOUR_API_KEY" \
https://encarapi.com/api/v2/encar/offers?page=1Integration Workflow
Follow these four steps to integrate with the EnCarAPI.
Get Available Filters
Retrieve all possible filter values (marks, models, configurations, colors, etc.)
GET /filtersGet Vehicle Listings
Fetch paginated listings with optional filters for make, model, year, price, and more.
GET /offers?page=1Track Changes
Get a change ID for a date, then poll for added, changed, and removed listings.
GET /change_id โ GET /changesGet Listing Details
Fetch full details for a specific listing by its inner_id.
GET /offer?inner_id=...API Endpoints
All available endpoints for accessing Korean vehicle data.
Daily Exports
Download complete data exports in multiple formats. Files are generated daily and available for download.
Data Retention
Files are stored for 3+ days minimum.
Daily Updates
Fresh daily files available for download.
CSV Format
CSV files use pipe (|) as column separator.
Available Export Files
| Format | All Active | New Daily | Removed Daily |
|---|---|---|---|
| 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 |
Download Examples
# Download all active listings as CSV
curl -L -X GET 'https://encarapi.com/2025-03-15/all_active.csv' \
-H 'Authorization: Basic YOUR_BASE64_CREDENTIALS' \
-o daily_car_data.csv# Download new daily listings as JSON
curl -L -X GET 'https://encarapi.com/2025-03-15/new_daily.json' \
-H 'Authorization: Basic YOUR_BASE64_CREDENTIALS' \
-o new_listings.json# Using wget
wget --method GET \
--header 'Authorization: Basic YOUR_BASE64_CREDENTIALS' \
'https://encarapi.com/2025-03-15/all_active.xlsx'Frequently Asked Questions
Ready to Get Started?
Contact us on Telegram to get your API credentials and start accessing Korean car data today.