Skip to main content
POST
/
api
/
drom
/
reviews
/
search
/drom/reviews/search
curl --request POST \
  --url https://api.anysite.io/api/drom/reviews/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "brand": "<string>",
  "count": 2,
  "timeout": 300,
  "model": "camry",
  "sort": "relevance"
}
'
[
  {
    "id": "<string>",
    "url": "<string>",
    "@type": "@drom_review_card",
    "title": "<string>",
    "brand": "<string>",
    "model": "<string>",
    "year": 123,
    "rating": 123,
    "author": "<string>",
    "city": "<string>",
    "brief": "<string>",
    "view_count": 123,
    "comment_count": 123,
    "image": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
brand
string
required

Brand slug, e.g. 'toyota'

Minimum string length: 1
Example:

"toyota"

count
integer
required

Max number of results to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
model
string | null

Model slug, e.g. 'camry'

Example:

"camry"

sort
enum<string>
default:relevance

Sort order

Available options:
relevance,
newest

Response

Successful Response

id
string
required
url
string
required
@type
string
default:@drom_review_card
title
string | null
brand
string | null
model
string | null
year
integer | null
rating
number | null
author
string | null
city
string | null
brief
string | null
view_count
integer | null
comment_count
integer | null
image
string | null