EnCarAPI
API Reference

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:

url
https://encarapi.com/api/v2/encar

For example, to fetch offers:

http
GET https://encarapi.com/api/v2/encar/offers?page=1&api_key=YOUR_API_KEY

Authentication

Authenticate your requests using an API key. Pass it as a query parameter or via the Authorization header.

bash
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=1

Integration Workflow

Follow these four steps to integrate with the EnCarAPI.

1

Get Available Filters

Retrieve all possible filter values (marks, models, configurations, colors, etc.)

GET /filters
2

Get Vehicle Listings

Fetch paginated listings with optional filters for make, model, year, price, and more.

GET /offers?page=1
3

Track Changes

Get a change ID for a date, then poll for added, changed, and removed listings.

GET /change_id โ†’ GET /changes
4

Get 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

FormatAll ActiveNew DailyRemoved Daily
CSVall_active.csvnew_daily.csvremoved_daily.csv
JSONall_active.jsonnew_daily.jsonremoved_daily.json
Excelall_active.xlsxnew_daily.xlsxremoved_daily.xlsx

Download Examples

bash
# 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
bash
# 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
bash
# 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.

EnCarAPI Documentation - API Reference for Korean Car Data