GET
/api/v2/encar/change_id

Start cursor by date

Returns the first change_id at/after a date — the start cursor you pass to /changes.

Query parameters
FieldTypeDescription
date requiredstringDate as yyyy-mm-dd.
Request
curl -s 'https://global-auto-hub.ru/api/v2/encar/change_id?date=2026-06-15&api_key=YOUR_API_KEY'
import requests
r = requests.get("https://global-auto-hub.ru/api/v2/encar/change_id?date=2026-06-15&api_key=YOUR_API_KEY")
print(r.json())
const r = await fetch("https://global-auto-hub.ru/api/v2/encar/change_id?date=2026-06-15&api_key=YOUR_API_KEY");
const data = await r.json();
console.log(data);
Response
{
  "change_id": 11864179
}
We reply in 2 min