/autoscout24/listings
curl --request POST \
--url https://api.anysite.io/api/autoscout24/listings \
--header 'Content-Type: application/json' \
--header 'access-token: <api-key>' \
--data '
{
"listing": "<string>",
"timeout": 300
}
'import requests
url = "https://api.anysite.io/api/autoscout24/listings"
payload = {
"listing": "<string>",
"timeout": 300
}
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({listing: '<string>', timeout: 300})
};
fetch('https://api.anysite.io/api/autoscout24/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/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([
'listing' => '<string>',
'timeout' => 300
]),
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/listings"
payload := strings.NewReader("{\n \"listing\": \"<string>\",\n \"timeout\": 300\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/listings")
.header("access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"listing\": \"<string>\",\n \"timeout\": 300\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.anysite.io/api/autoscout24/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 \"listing\": \"<string>\",\n \"timeout\": 300\n}"
response = http.request(request)
puts response.read_body[
{
"id": "<string>",
"@type": "AutoScout24ListingDetail",
"url": "<string>",
"price": 123,
"dealer_price": 123,
"price_public": {
"@type": "AutoScout24Price",
"amount": 123,
"net_amount": 123,
"vat_rate": 123,
"tax_deductible": false,
"negotiable": false,
"on_request_only": false
},
"price_dealer": {
"@type": "AutoScout24Price",
"amount": 123,
"net_amount": 123,
"vat_rate": 123,
"tax_deductible": false,
"negotiable": false,
"on_request_only": false
},
"status": "<string>",
"leads_range": "<string>",
"created_at": "<string>",
"whatsapp_number": "<string>",
"warranty": "<string>",
"warranty_exists": false,
"image": "<string>",
"images": [],
"youtube_url": "<string>",
"powertrain_type": "<string>",
"carfax_report_url": "<string>",
"vehicle": {
"@type": "AutoScout24Vehicle",
"make": "<string>",
"model": "<string>",
"model_group": "<string>",
"variant": "<string>",
"model_version": "<string>",
"make_id": 123,
"model_id": 123,
"hsn_tsn": "<string>",
"body_type": "<string>",
"offer_type": "<string>",
"mileage_km": 123,
"first_registration_date": "<string>",
"production_year": 123,
"power_kw": 123,
"power_hp": 123,
"transmission": "<string>",
"gears": 123,
"cylinders": 123,
"drive_train": "<string>",
"displacement_cc": 123,
"number_of_seats": 123,
"number_of_doors": 123,
"body_color": "<string>",
"manufacturer_color": "<string>",
"paint_type": "<string>",
"upholstery": "<string>",
"upholstery_color": "<string>",
"fuel_type": "<string>",
"fuel_consumption_combined": 123,
"co2_emission": 123,
"emission_class": "<string>",
"electric_range_km": 123,
"weight_kg": 123,
"has_full_service_history": false,
"non_smoking": false,
"previous_owners": 123,
"had_accident": true,
"new_inspection": false,
"original_market": "<string>",
"legal_categories": [],
"equipment": []
},
"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": []
},
"ratings": {
"@type": "AutoScout24Ratings",
"rating_count": 123,
"stars": 123,
"recommend_percentage": 123
}
}
]{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}/autoscout24
/autoscout24/listings
Get a single AutoScout24 listing by id (UUID) or offer URL: full vehicle specification, prices (public and dealer), equipment, fuel/CO2, environment, media, location and seller. A listing that has been sold or withdrawn is still returned in full, marked by status.
Price: 10 credits
⚠️ Common errors: 412: Listing not found (well-formed listing id that no longer exists on AutoScout24)
POST
/
api
/
autoscout24
/
listings
/autoscout24/listings
curl --request POST \
--url https://api.anysite.io/api/autoscout24/listings \
--header 'Content-Type: application/json' \
--header 'access-token: <api-key>' \
--data '
{
"listing": "<string>",
"timeout": 300
}
'import requests
url = "https://api.anysite.io/api/autoscout24/listings"
payload = {
"listing": "<string>",
"timeout": 300
}
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({listing: '<string>', timeout: 300})
};
fetch('https://api.anysite.io/api/autoscout24/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/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([
'listing' => '<string>',
'timeout' => 300
]),
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/listings"
payload := strings.NewReader("{\n \"listing\": \"<string>\",\n \"timeout\": 300\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/listings")
.header("access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"listing\": \"<string>\",\n \"timeout\": 300\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.anysite.io/api/autoscout24/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 \"listing\": \"<string>\",\n \"timeout\": 300\n}"
response = http.request(request)
puts response.read_body[
{
"id": "<string>",
"@type": "AutoScout24ListingDetail",
"url": "<string>",
"price": 123,
"dealer_price": 123,
"price_public": {
"@type": "AutoScout24Price",
"amount": 123,
"net_amount": 123,
"vat_rate": 123,
"tax_deductible": false,
"negotiable": false,
"on_request_only": false
},
"price_dealer": {
"@type": "AutoScout24Price",
"amount": 123,
"net_amount": 123,
"vat_rate": 123,
"tax_deductible": false,
"negotiable": false,
"on_request_only": false
},
"status": "<string>",
"leads_range": "<string>",
"created_at": "<string>",
"whatsapp_number": "<string>",
"warranty": "<string>",
"warranty_exists": false,
"image": "<string>",
"images": [],
"youtube_url": "<string>",
"powertrain_type": "<string>",
"carfax_report_url": "<string>",
"vehicle": {
"@type": "AutoScout24Vehicle",
"make": "<string>",
"model": "<string>",
"model_group": "<string>",
"variant": "<string>",
"model_version": "<string>",
"make_id": 123,
"model_id": 123,
"hsn_tsn": "<string>",
"body_type": "<string>",
"offer_type": "<string>",
"mileage_km": 123,
"first_registration_date": "<string>",
"production_year": 123,
"power_kw": 123,
"power_hp": 123,
"transmission": "<string>",
"gears": 123,
"cylinders": 123,
"drive_train": "<string>",
"displacement_cc": 123,
"number_of_seats": 123,
"number_of_doors": 123,
"body_color": "<string>",
"manufacturer_color": "<string>",
"paint_type": "<string>",
"upholstery": "<string>",
"upholstery_color": "<string>",
"fuel_type": "<string>",
"fuel_consumption_combined": 123,
"co2_emission": 123,
"emission_class": "<string>",
"electric_range_km": 123,
"weight_kg": 123,
"has_full_service_history": false,
"non_smoking": false,
"previous_owners": 123,
"had_accident": true,
"new_inspection": false,
"original_market": "<string>",
"legal_categories": [],
"equipment": []
},
"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": []
},
"ratings": {
"@type": "AutoScout24Ratings",
"rating_count": 123,
"stars": 123,
"recommend_percentage": 123
}
}
]{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Authorizations
API token from the dashboard
Headers
Body
application/json
Response
Successful Response
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
⌘I