/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
}
'import requests
url = "https://api.anysite.io/api/autoscout24/dealers/listings"
payload = {
"dealer": "<string>",
"count": 2,
"timeout": 300,
"article_type": "C",
"sort": "standard",
"descending": False
}
headers = {
"access-token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'access-token': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
dealer: '<string>',
count: 2,
timeout: 300,
article_type: 'C',
sort: 'standard',
descending: false
})
};
fetch('https://api.anysite.io/api/autoscout24/dealers/listings', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.anysite.io/api/autoscout24/dealers/listings",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'dealer' => '<string>',
'count' => 2,
'timeout' => 300,
'article_type' => 'C',
'sort' => 'standard',
'descending' => false
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"access-token: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.anysite.io/api/autoscout24/dealers/listings"
payload := strings.NewReader("{\n \"dealer\": \"<string>\",\n \"count\": 2,\n \"timeout\": 300,\n \"article_type\": \"C\",\n \"sort\": \"standard\",\n \"descending\": false\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("access-token", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.anysite.io/api/autoscout24/dealers/listings")
.header("access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"dealer\": \"<string>\",\n \"count\": 2,\n \"timeout\": 300,\n \"article_type\": \"C\",\n \"sort\": \"standard\",\n \"descending\": false\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.anysite.io/api/autoscout24/dealers/listings")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["access-token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"dealer\": \"<string>\",\n \"count\": 2,\n \"timeout\": 300,\n \"article_type\": \"C\",\n \"sort\": \"standard\",\n \"descending\": false\n}"
response = http.request(request)
puts response.read_body[
{
"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": []
}
}
]{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}/autoscout24
/autoscout24/dealers/listings
Get the current inventory (listings) of an AutoScout24 dealer by slug (or dealer page URL). Returns listing cards with price, vehicle summary, location and seller. Sort by best match, price, registration, mileage or power.
Price: 20 credits per 20 results
⚠️ Common errors: 412: Dealer not found (well-formed but nonexistent dealer slug)
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
}
'import requests
url = "https://api.anysite.io/api/autoscout24/dealers/listings"
payload = {
"dealer": "<string>",
"count": 2,
"timeout": 300,
"article_type": "C",
"sort": "standard",
"descending": False
}
headers = {
"access-token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'access-token': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
dealer: '<string>',
count: 2,
timeout: 300,
article_type: 'C',
sort: 'standard',
descending: false
})
};
fetch('https://api.anysite.io/api/autoscout24/dealers/listings', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.anysite.io/api/autoscout24/dealers/listings",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'dealer' => '<string>',
'count' => 2,
'timeout' => 300,
'article_type' => 'C',
'sort' => 'standard',
'descending' => false
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"access-token: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.anysite.io/api/autoscout24/dealers/listings"
payload := strings.NewReader("{\n \"dealer\": \"<string>\",\n \"count\": 2,\n \"timeout\": 300,\n \"article_type\": \"C\",\n \"sort\": \"standard\",\n \"descending\": false\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("access-token", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.anysite.io/api/autoscout24/dealers/listings")
.header("access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"dealer\": \"<string>\",\n \"count\": 2,\n \"timeout\": 300,\n \"article_type\": \"C\",\n \"sort\": \"standard\",\n \"descending\": false\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.anysite.io/api/autoscout24/dealers/listings")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["access-token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"dealer\": \"<string>\",\n \"count\": 2,\n \"timeout\": 300,\n \"article_type\": \"C\",\n \"sort\": \"standard\",\n \"descending\": false\n}"
response = http.request(request)
puts response.read_body[
{
"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": []
}
}
]{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Authorizations
API token from the dashboard
Headers
Body
application/json
Minimum string length:
1Required range:
x >= 1Required range:
20 <= x <= 1500Available options:
C, B, N, X, L Available options:
standard, price, financerate, leasing_rate, make, year, mileage, power, age, distance Response
Successful Response
Show child attributes
Show child attributes
Show child attributes
Show child attributes
⌘I