Skip to main content
POST
/
api
/
drom
/
dealers
/
search
/drom/dealers/search
curl --request POST \
  --url https://api.anysite.io/api/drom/dealers/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "city": "<string>",
  "count": 2,
  "timeout": 300,
  "brand": "toyota"
}
'
[
  {
    "id": "<string>",
    "@type": "@drom_dealer",
    "title": "<string>",
    "url": "<string>",
    "is_official": true,
    "years_on_drom": "<string>",
    "address": "<string>",
    "map_url": "<string>",
    "listing_summary": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
city
string
required

City slug, e.g. 'novosibirsk', 'moscow'

Minimum string length: 1
Example:

"novosibirsk"

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
brand
string | null

Brand slug, e.g. 'toyota'

Example:

"toyota"

Response

Successful Response

id
string
required
@type
string
default:@drom_dealer
title
string | null
url
string | null
is_official
boolean | null
years_on_drom
string | null
address
string | null
map_url
string | null
listing_summary
string | null