GET
/api/v2/encar/offersList offers
Filtered, paginated list — newest-changed first. Returns offer envelopes + pagination meta.
Query parameters
| Field | Type | Description |
|---|---|---|
| page | int | Page number (1-based). Default 1. OFFSET paging — fine for shallow pages; for deep/bulk download use after_change_id (constant-time). |
| limit | int | Page size. Default 20, max 1000. |
| after_change_id · cursor | int64 | Keyset cursor for fast deep/bulk download: pass the previous response meta.next_cursor; O(1) at any depth. next_cursor=0 = last page. |
| mark · make | string | Make / brand (case-insensitive). Chinese sources: canonical English (original in extra_prep.make_zh). |
| model | string | Model. |
| transmission_type | string | e.g. automatic, manual. |
| color | string | Colour. |
| body_type | string | Body shape. |
| fuel_type · engine_type | string | Fuel / engine type, e.g. petrol, diesel, ev. |
| year_from · year_to | int | Year range. |
| price_from · price_to | int | Price range, EUR. |
| km_age_from · km_age_to · km_from · km_to | int | Mileage range, km. |
| lang | string | Value language: lang=ru returns characteristic values (body/fuel/transmission/drive/colour/seller) in Russian + a labels map. Brands/models stay English. Default English. |
Request
curl -s 'https://global-auto-hub.ru/api/v2/encar/offers?page=1&mark=Hyundai&api_key=YOUR_API_KEY'Response
{
"result": [
{
"id": 3219435,
"inner_id": "40427050",
"change_type": "added",
"created_at": "2026-06-16T12:02:03Z",
"data": {
"inner_id": "40427050",
"url": "https://www.encar.com/...",
"source": "encar",
"mark": "Hyundai",
"model": "Palisade",
"year": 2021,
"body_type": "SUV",
"fuel_type": "diesel",
"transmission": "automatic",
"km_age": 92842,
"color": "Black",
"price": {
"raw": 31900000,
"currency": "KRW",
"usd": 23100,
"eur": 21300
},
"city": "Busan",
"is_dealer": true,
"images": [
"https://cdn.encar.com/.../001.jpg",
"…25 photos"
],
"status": "active"
}
}
],
"meta": {
"page": 1,
"next_page": 2,
"limit": 20,
"next_cursor": 18202296
}
}