Skip to main content
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
}
'
[
  {
    "id": "<string>",
    "@type": "AutoScout24ListingDetail",
    "url": "<string>",
    "description": "<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>",
    "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
    }
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
listing
string
required

Listing id (UUID) or a full AutoScout24 offer URL

Minimum string length: 1
Examples:

"0a64d718-7bfe-47f9-97e2-a4b3fdfe2247"

"https://www.autoscout24.com/offers/bmw-116-diesel-black-cat_ma13mo18480-0a64d718-7bfe-47f9-97e2-a4b3fdfe2247"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:AutoScout24ListingDetail
url
string | null
description
string | null
price
number | null
dealer_price
number | null
price_public
object
price_dealer
object
status
string | null
leads_range
string | null
created_at
string | null
whatsapp_number
string | null
warranty
string | null
warranty_exists
boolean
default:false
image
string | null
images
string[]
youtube_url
string | null
vehicle
object
location
object
seller
object
ratings
object