Skip to main content
POST
/
api
/
autoru
/
dealers
/autoru/dealers
curl --request POST \
  --url https://api.anysite.io/api/autoru/dealers \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "dealer": "<string>",
  "timeout": 300
}
'
[
  {
    "@type": "@autoru_dealer",
    "id": "<string>",
    "name": "<string>",
    "alias": "<string>",
    "is_official": true,
    "rating": 123,
    "review_count": 123,
    "image": "<string>",
    "phones": [],
    "geo": {
      "@type": "@autoru_geo",
      "address": "<string>",
      "region": "<string>",
      "latitude": 123,
      "longitude": 123
    },
    "open_hours": "<string>",
    "registration_date": "<string>",
    "net_name": "<string>",
    "offer_count": 123,
    "new_offer_count": 123,
    "used_offer_count": 123,
    "marks": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
dealer
string
required

Dealer code/alias (e.g. 'avtogermes_geely_mkad_44_km') or the full dealer profile URL

Minimum string length: 1
Example:

"avtogermes_geely_mkad_44_km"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

@type
string
default:@autoru_dealer
id
string | null
name
string | null
alias
string | null
is_official
boolean | null
rating
number | null
review_count
integer | null
image
string | null
phones
string[]
geo
AutoruGeo · object
open_hours
string | null
registration_date
string | null
net_name
string | null
offer_count
integer | null
new_offer_count
integer | null
used_offer_count
integer | null
marks
string[]