Skip to main content
POST
/
api
/
drom
/
reviews
/drom/reviews
curl --request POST \
  --url https://api.anysite.io/api/drom/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "review": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "@type": "@drom_review",
    "title": "<string>",
    "brand": "<string>",
    "model": "<string>",
    "year": 123,
    "rating": 123,
    "author": "<string>",
    "city": "<string>",
    "text": "<string>",
    "engine": "<string>",
    "transmission": "<string>",
    "drive": "<string>",
    "body_type": "<string>",
    "wheel": "<string>",
    "generation": "<string>",
    "fuel_consumption_highway": "<string>",
    "fuel_consumption_city": "<string>",
    "purchase_year": 123,
    "mileage": "<string>",
    "view_count": 123,
    "comment_count": 123,
    "published_at": "<string>",
    "image": "<string>",
    "images": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
review
string
required

Owner review as a full Drom.ru review URL

Minimum string length: 1
Example:

"https://www.drom.ru/reviews/toyota/camry/1464539/"

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_review
title
string | null
brand
string | null
model
string | null
year
integer | null
rating
number | null
author
string | null
city
string | null
text
string | null
engine
string | null
transmission
string | null
drive
string | null
body_type
string | null
wheel
string | null
generation
string | null
fuel_consumption_highway
string | null
fuel_consumption_city
string | null
purchase_year
integer | null
mileage
string | null
view_count
integer | null
comment_count
integer | null
published_at
string | null
image
string | null
images
string[]