Skip to main content
POST
/
api
/
autoru
/
dealers
/
search
/autoru/dealers/search
curl --request POST \
  --url https://api.anysite.io/api/autoru/dealers/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "region": "moskva",
  "section": "all",
  "mark": "<string>",
  "name": "<string>"
}
'
[
  {
    "id": "<string>",
    "@type": "@autoru_dealer_card",
    "name": "<string>",
    "alias": "<string>",
    "url": "<string>",
    "image": "<string>",
    "mark": "<string>",
    "net_name": "<string>",
    "net_alias": "<string>",
    "org_type": "<string>",
    "address": "<string>",
    "latitude": 123,
    "longitude": 123,
    "geo": {
      "@type": "@autoru_geo",
      "address": "<string>",
      "region": "<string>",
      "latitude": 123,
      "longitude": 123
    },
    "phones": [],
    "offer_count": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
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
region
string
default:moskva

Region slug to search in (e.g. 'moskva', 'sankt-peterburg')

section
enum<string>
default:all

Dealers selling new, used or all vehicles

Available options:
used,
new,
all
mark
string | null

Filter to dealers selling a given mark (slug)

Minimum string length: 1
name
string | null

Filter dealers by name substring

Minimum string length: 1

Response

Successful Response

id
string
required
@type
string
default:@autoru_dealer_card
name
string | null
alias
string | null
url
string | null
image
string | null
mark
string | null
net_name
string | null
net_alias
string | null
org_type
string | null
address
string | null
latitude
number | null
longitude
number | null
geo
AutoruGeo · object
phones
string[]
offer_count
integer | null