Skip to main content
POST
/
api
/
drom
/
cars
/drom/cars
curl --request POST \
  --url https://api.anysite.io/api/drom/cars \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "car": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "@type": "@drom_car",
    "title": "<string>",
    "brand": "<string>",
    "model": "<string>",
    "year": 123,
    "price": 123,
    "currency": "<string>",
    "city": "<string>",
    "engine": "<string>",
    "power": 123,
    "transmission": "<string>",
    "drive": "<string>",
    "body_type": "<string>",
    "color": "<string>",
    "mileage": 123,
    "owners": "<string>",
    "wheel": "<string>",
    "special_marks": "<string>",
    "generation": "<string>",
    "complectation": "<string>",
    "generation_url": "<string>",
    "complectation_url": "<string>",
    "vin": "<string>",
    "condition": "<string>",
    "pts_mismatch": true,
    "description": "<string>",
    "image": "<string>",
    "images": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
car
string
required

Car listing as a full Drom.ru listing URL

Minimum string length: 1
Example:

"https://auto.drom.ru/vladivostok/toyota/camry/125790180.html"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
url
string
required
@type
string
default:@drom_car
title
string | null
brand
string | null
model
string | null
year
integer | null
price
integer | null
currency
string | null
city
string | null
engine
string | null
power
integer | null
transmission
string | null
drive
string | null
body_type
string | null
color
string | null
mileage
integer | null
owners
string | null
wheel
string | null
special_marks
string | null
generation
string | null
complectation
string | null
generation_url
string | null
complectation_url
string | null
vin
string | null
condition
string | null
pts_mismatch
boolean | null
description
string | null
image
string | null
images
string[]