Discover/autoscout24.com API
live

autoscout24.com APIautoscout24.com

Search AutoScout24 car listings across Europe by make, model, price, fuel type, and more. Access vehicle taxonomy with makes and models via 2 endpoints.

Endpoints
2
Updated
3mo ago
Try it
Car make (e.g., Volkswagen, BMW, Audi, Mercedes-Benz)
Start page number
Car model (e.g., Golf, 3-series, A4)
ISO-2 country codes, comma-separated (e.g., DE,IT,FR). Supported: AT, BE, DE, ES, FR, IT,
Sort order: standard, price, price_desc, year, year_desc
Maximum year of first registration (e.g., 2023)
Maximum price in EUR
Fuel type code: D for Diesel, B for Gasoline, E for Electric, L for LPG, C for CNG, 2 for
Maximum number of pages to scan
Number of results per page (max 20)
Minimum year of first registration (e.g., 2018)
Minimum price in EUR
Include raw JSON data from the site in each listing
Transmission type code: M for Manual, A for Automatic, S for Semi-automatic
Exclude damaged listings
api.parse.bot/scraper/e78cd3f6-1aab-49ec-8344-854707ec80da/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/e78cd3f6-1aab-49ec-8344-854707ec80da/search_listings?make=BMW&page=1&model=3+Series&country=DE&max_pages=1&page_size=20' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 2 totalclick to expand

Search for car listings on AutoScout24 with various filters including make, model, price range, year, fuel type, transmission, and country. Returns paginated results with listing details and metadata.

Input
ParamTypeDescription
makestringCar make (e.g., Volkswagen, BMW, Audi, Mercedes-Benz)
pageintegerStart page number
modelstringCar model (e.g., Golf, 3-series, A4)
countrystringISO-2 country codes, comma-separated (e.g., DE,IT,FR). Supported: AT, BE, DE, ES, FR, IT, LU, NL
sort_bystringSort order: standard, price, price_desc, year, year_desc
year_tostringMaximum year of first registration (e.g., 2023)
price_tostringMaximum price in EUR
fuel_typestringFuel type code: D for Diesel, B for Gasoline, E for Electric, L for LPG, C for CNG, 2 for Ethanol, M for Hybrid
max_pagesintegerMaximum number of pages to scan
page_sizeintegerNumber of results per page (max 20)
year_fromstringMinimum year of first registration (e.g., 2018)
price_fromstringMinimum price in EUR
include_rawbooleanInclude raw JSON data from the site in each listing
transmissionstringTransmission type code: M for Manual, A for Automatic, S for Semi-automatic
exclude_damagedbooleanExclude damaged listings
Response
{
  "type": "object",
  "fields": {
    "listings": "array of car listing objects with id, make, model, model_version, first_registration, price, mileage, fuel_type, transmission, location, seller_type, image_url, url, and contact",
    "metadata": "object with current_page, page_size, scanned_pages, total_results, total_pages, and has_more"
  },
  "sample": {
    "data": {
      "listings": [
        {
          "id": "789e0935-8d48-49a7-b055-a12a9563d7ae",
          "url": "https://www.autoscout24.com/offers/volkswagen-golf-example",
          "make": "Volkswagen",
          "model": "Golf",
          "price": 1700,
          "contact": {
            "phones": [
              "+49 1234 567890"
            ],
            "company_name": "Autohaus Example GmbH",
            "contact_name": "John Doe"
          },
          "mileage": 356000,
          "location": "03222 Luebbenau, DE",
          "fuel_type": "Diesel",
          "image_url": "https://prod.pictures.autoscout24.net/listing-images/example.jpg",
          "seller_type": "Dealer",
          "transmission": "Manual",
          "model_version": "VI Variant Trendline BlueMotion",
          "first_registration": "12-2011"
        }
      ],
      "metadata": {
        "has_more": true,
        "page_size": 20,
        "total_pages": 200,
        "current_page": 1,
        "scanned_pages": 1,
        "total_results": 19391
      }
    },
    "status": "success"
  }
}

About the autoscout24.com API

The AutoScout24 API covers 2 endpoints that expose European used and new car listings alongside the full vehicle taxonomy. The search_listings endpoint returns paginated results with fields including price, mileage, fuel type, transmission, and first registration year — filterable across 8 supported countries. The get_aggregations endpoint lets you enumerate all available makes and their corresponding models by numeric ID.

Search Car Listings

The search_listings endpoint accepts filters for make, model, country (ISO-2 codes from AT, BE, DE, ES, FR, IT, LU, NL), price_to, year_to, fuel_type, and sort_by. Fuel type codes map to common options: D for Diesel, B for Gasoline, E for Electric, L for LPG, C for CNG, and M for Hybrid. Each listing object in the response includes id, make, model, model_version, first_registration, price (in EUR), mileage, fuel_type, and transmission. The metadata object on every response reports current_page, total_results, total_pages, and has_more for straightforward pagination using the page parameter.

Vehicle Taxonomy

The get_aggregations endpoint operates in two modes. Set mode='makes' to retrieve the full list of car makes, each with a numeric id, a name string, and a label object containing an en_GB display string. Once you have a make_id, switch to mode='models' to pull the model list for that make. The vehicle_type parameter narrows results to either cars (C) or motorcycles (M). The metadata object returns a total count and confirms the active mode.

Coverage and Scope

Listing data covers AutoScout24's European inventory, with country filtering limited to the eight markets listed above. Prices are denominated in EUR. Sorting options include standard, price, price_desc, year, and year_desc, which controls the order listings are returned within pagination.

Common use cases
  • Build a cross-country price comparison tool using price_to and country filters across DE, FR, and IT markets
  • Track average asking prices for a specific make/model combination over time using search_listings with sort_by=price
  • Populate make/model dropdowns in a car search UI using get_aggregations in both makes and models modes
  • Monitor Electric vehicle (fuel_type=E) availability and pricing trends across European markets
  • Identify first-registration year distribution for a model using the first_registration field across paginated results
  • Build a motorcycle inventory feed by combining get_aggregations with vehicle_type=M and filtered search_listings calls
  • Aggregate mileage and price data by transmission type to surface manual vs. automatic price differentials
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does AutoScout24 have an official developer API?+
AutoScout24 does not offer a public developer API for accessing listings or vehicle taxonomy. Their partner and dealer integrations are restricted to contracted business accounts and are not publicly available.
What does the `search_listings` response include for each car?+
Each listing object includes id, make, model, model_version, first_registration, price (EUR), mileage, fuel_type, and transmission. The response-level metadata object includes current_page, page_size, total_results, total_pages, and has_more to support pagination.
Which countries are supported in the `country` filter?+
The country parameter accepts comma-separated ISO-2 codes from eight markets: AT (Austria), BE (Belgium), DE (Germany), ES (Spain), FR (France), IT (Italy), LU (Luxembourg), and NL (Netherlands). Listings outside these markets are not returned.
Does the API return dealer information or contact details for listings?+
Not currently. The search_listings response covers vehicle attributes like price, mileage, fuel type, and registration year, but does not include dealer name, dealer location, or contact details. You can fork this API on Parse and revise it to add an endpoint that retrieves listing detail pages including dealer information.
Can I filter listings by mileage range?+
Not currently. The API supports filtering by price_to and year_to but does not expose a mileage_to or mileage_from parameter. Mileage is present as a field in each returned listing object. You can fork this API on Parse and revise it to add mileage-range filter parameters to the search_listings endpoint.
Page content last updated . Spec covers 2 endpoints from autoscout24.com.
Related APIs in AutomotiveSee all →
car-part.com API
Search for recycled auto parts across thousands of vehicles and get detailed information on pricing, availability, and specifications from car-part.com. Find the exact parts you need with comprehensive search metadata and individual part details to compare options and locate the best deals.
honda.ca API
Get current Honda Canada vehicle pricing, lease and finance payment options, APR rates, and available incentives across all Canadian provinces to compare deals in real-time. Calculate custom payment scenarios and browse all Honda models with their latest promotional offers directly from Honda Canada's official pricing data.
autodoc.co.uk API
Find auto parts and check compatibility with your vehicle by browsing makes, models, and engines, then search for parts with detailed specifications and discover equivalent alternatives. Get everything you need to identify the right replacement parts for any car in the Autodoc catalog.
leboncoin.fr API
Search and retrieve detailed listings from Leboncoin across cars, real estate, jobs, and other categories with advanced filtering options. Access seller profiles, pricing analytics, and comprehensive listing details to find exactly what you're looking for on France's leading classifieds platform.
auctiontime.com API
Search and browse equipment and truck auction listings from AuctionTime.com, view detailed information about specific auctions, filter by category and auctioneer, and track auction results by date. Access comprehensive auction data including listings, categories, and auctioneer information all in one place.
yad2.co.il API
Search for apartments and cars on Yad2's marketplace and access detailed listing information including photos, prices, and specifications. Instantly reveal seller contact information to connect directly with real estate agents and car dealers.
turo.com API
Search for peer-to-peer car rentals across Turo by location and dates to browse available vehicles with pricing, specifications, and real-time availability. Get detailed information on specific cars to compare features and make rental decisions.
bilbasen.dk API
Search Denmark's largest car marketplace to find vehicles by make and model, then access detailed pricing and technical specifications including emissions, weight, MSRP, battery size, and equipment details. Get comprehensive car listings and full specs to compare vehicles on Bilbasen.dk.