GET
/api/v2/encar/changes

Changes feed (delta sync)

Every added / changed / removed event from a change_id cursor, each with the full listing data. Page forward with meta.next_change_id.

Query parameters
FieldTypeDescription
change_id int64Start cursor (inclusive). 0 = from the beginning.
limit intPage size. Default 100, max 1000.
lang stringlang=ru → characteristic values in Russian (see /offers).
Request
curl -s 'https://global-auto-hub.ru/api/v2/encar/changes?change_id=1&limit=20&api_key=YOUR_API_KEY'
import requests
r = requests.get("https://global-auto-hub.ru/api/v2/encar/changes?change_id=1&limit=20&api_key=YOUR_API_KEY")
print(r.json())
const r = await fetch("https://global-auto-hub.ru/api/v2/encar/changes?change_id=1&limit=20&api_key=YOUR_API_KEY");
const data = await r.json();
console.log(data);
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"
      }
    },
    {
      "id": 457,
      "inner_id": "40427051",
      "change_type": "changed",
      "created_at": "…",
      "data": {}
    },
    {
      "id": 458,
      "inner_id": "40427052",
      "change_type": "removed",
      "created_at": "…",
      "data": {}
    }
  ],
  "meta": {
    "cur_change_id": 1,
    "next_change_id": 21,
    "limit": 20
  }
}
We reply in 2 min