Skip to main content
POST
/
api
/
autoscout24
/
dealers
/
listings
/autoscout24/dealers/listings
curl --request POST \
  --url https://api.anysite.io/api/autoscout24/dealers/listings \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "dealer": "<string>",
  "count": 2,
  "timeout": 300,
  "article_type": "C",
  "sort": "standard",
  "descending": false
}
'
[
  {
    "id": "<string>",
    "@type": "AutoScout24Listing",
    "url": "<string>",
    "make": "<string>",
    "model": "<string>",
    "model_group": "<string>",
    "variant": "<string>",
    "model_version": "<string>",
    "price": 123,
    "mileage_km": 123,
    "first_registration": "<string>",
    "power_kw": 123,
    "power_hp": 123,
    "fuel": "<string>",
    "transmission": "<string>",
    "body_type": "<string>",
    "displacement_cc": 123,
    "offer_type": "<string>",
    "is_new": false,
    "is_damaged": false,
    "image": "<string>",
    "images": [],
    "location": {
      "@type": "AutoScout24Location",
      "country_code": "<string>",
      "zip": "<string>",
      "city": "<string>",
      "street": "<string>",
      "latitude": 123,
      "longitude": 123
    },
    "seller": {
      "@type": "AutoScout24Seller",
      "id": "<string>",
      "type": "<string>",
      "is_dealer": false,
      "company_name": "<string>",
      "contact_name": "<string>",
      "image": "<string>",
      "alias": "<string>",
      "info_url": "<string>",
      "culture": "<string>",
      "phones": []
    }
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
dealer
string
required

Dealer slug or a full AutoScout24 dealer page URL

Minimum string length: 1
Examples:

"stad-m"

"https://www.autoscout24.com/dealerinfo/stad-m"

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
article_type
enum<string>
default:C

Vehicle article type

Available options:
C,
B,
N,
X,
L
sort
enum<string>
default:standard

Sort order

Available options:
standard,
price,
financerate,
leasing_rate,
make,
year,
mileage,
power,
age,
distance
descending
boolean
default:false

Sort descending instead of ascending

Response

Successful Response

id
string
required
@type
string
default:AutoScout24Listing
url
string | null
make
string | null
model
string | null
model_group
string | null
variant
string | null
model_version
string | null
price
number | null
mileage_km
integer | null
first_registration
string | null
power_kw
integer | null
power_hp
integer | null
fuel
string | null
transmission
string | null
body_type
string | null
displacement_cc
integer | null
offer_type
string | null
is_new
boolean
default:false
is_damaged
boolean
default:false
image
string | null
images
string[]
location
object
seller
object