AutoScout24.com Logo

AutoScout24 API
Car Scraper & Parser

Fetch AutoScout24 vehicle data via direct API. Automotive scraper with real-time access to vehicle listings.

Organized data with custom export formats.

Europe Car Platform API

Access European car platform data via our API. Clean, organized vehicle data delivered through simple endpoints. Works for analytics, market valuation, and purchasing decisions.

Live API

The AutoScout24 API delivers new vehicle listings the moment they appear.

Advantage: Notice new posts instantly.

Daily Data Exports

Active Cars: Daily export of all current listings for market analysis.

Removed Cars: Daily report of delisted ads with final sale prices.

Data Parser

Access all details from AutoScout24: Price, Mileage, Year, Make, Model, Technical Specs, Equipment, Condition Reports, and Vehicle History.

AutoScout24.com

AutoScout24 is Europe's leading online car market, operating in 18 countries since 1998. With over 2 million active listings, it's a primary source for European automotive data. The AutoScout24 API offers direct access to this information, no complex parsers or scrapers needed.

Each listing on AutoScout24 includes technical specifications, service history, and inspection reports. The API provides this data in organized, ready-to-use format about the European car market.

The AutoScout24 API provides access to market data including regional price differences, seasonal trends, and vehicle availability changes. Get vehicle specifications, manufacturer options, and financial details for market analysis.

The AutoScout24 API works in real-time, finding new listings within 60 seconds. Track when cars are sold to see actual prices. Access this market data through the API, no custom data collection needed.

Data We Collect
inner_id: 2aa0d910-4b72-4c69
make: Toyota
model: Yaris
year: 2006
color: Black
body_type: Compact
section: Used
seller: Spazio Auto Srl
seller_id: 17358964
seller_type: Dealer
price_eur: 3490
km_age: 240000
engine_type: Diesel
horse_power: 90
displacement: 1.4
transmission: Manual
doors_count: 5
num_seats: 5
first_registration: 12/2006
seller_address1: Via Appia Nuova
seller_phones: +390624416455
image_urls: Array of URLs
url: https://www.autoscout24.com/offers/toyota-yaris...
Daily Data Exports

Data Storage Policy

Export files stored with minimum 3-day retention and automatic backup archival.

API Schedule

Daily data exports with current content ready for download.

CSV File Format

CSV automotive data files utilize pipe delimiter (|) for column separation.

URL Format:

https://{personal_name}.auto-api.com/{date}/{file_name}

Request Parameters:

  • personal_name - personal_name - unique assigned subdomain identifier.
  • date - date - target date in yyyy-mm-dd format (e.g., 2025-09-06).
  • file_name - file_name - name of the export file with its extension.

Available Formats:

  • CSV - CSV - all_active.csv, new_daily.csv, removed_daily.csv
  • JSON - JSON - all_active.json, new_daily.json, removed_daily.json
  • Excel - Excel - all_active.xlsx, new_daily.xlsx, removed_daily.xlsx

cURL API Request Example

curl -L -X GET 'https://{personal_name}.auto-api.com/yyyy-mm-dd/all_active.csv' \
  -H 'Authorization: Basic XXX' \
  -o daily_car_data.csv

Wget Download Command

wget --method GET \
  --header 'Authorization: Basic XXX==' \
  'https://{personal_name}.auto-api.com/yyyy-mm-dd/all_active.csv'
Real-Time API Documentation

Request Parameters

api_key - api_key - your personal API key

from_id - from_id - change ID to start getting data from. Use 0 for first request, then use last received change ID + 1

Response Parameters

inner_id - inner_id - permanent listing ID on autoscout24.com

change_type - change_type - event type: "added" (published), "changed" (price changed), "removed" (delisted)

created_at - created_at - event timestamp

Response Body

{
  "result": [
    {
      "id": 4695867,
      "inner_id": "2aa0d910-4b72-4c69-9638-79ac5c58549e",
      "change_type": "added",
      "created_at": "2025-05-27T00:23:45.196",
      "data": {
        "id": "4695867",
        "mark": "Toyota",
        "model": "Yaris",
        "url": "https://www.autoscout24.com/offers/toyota-yaris-1-4-d-4d-5porte-sol-unipro-ok-neopatenati-diesel-black-2aa0d910-4b72-4c69-9638-79ac5c58549e",
        "price_eur": 3490,
        "year": 2006,
        "km_age": 240000,
        "color": "black",
        "section": "used",
        "seller": "Spazio Auto Srl",
        "address": "Roma - Rm",
        "engine_type": "diesel",
        "displacement": "1.4",
        "horse_power": "90",
        "body_type": "compact",
        "transmission": "Manual",
        "seller_id": "17358964",
        "seller_url": "https://www.autoscout24.com/dealerinfo/spazio-auto-srl-roma-rm/imprint",
        "seller_type": "dealer",
        "seller_address1": "Via Appia Nuova, 864/B, 00178",
        "seller_phones": [
          "+390624416455",
          "+393286157237"
        ],
        "seller_person_name": "Alessandro e/o Carlo",
        "doors_count": "5",
        "num_seats": "5",
        "first_registration": "12/2006",
        "title": "Toyota Yaris 1.4 D-4D 5PORTE SOL **UNIPRO'**OK NEOPATENATI**",
        "image_urls": [
          "https://prod.pictures.autoscout24.net/listing-images/2aa0d910-4b72-4c69-9638-79ac5c58549e_71fd3af5-83bf-4d55-b015-276d02239517.jpg/1280x960.jpg",
          "..."
        ],
        "created_at": "2025-05-27T00:23:45.196"
      }
    },
    {
      "id": 4695868,
      "inner_id": "3bb0e920-5c83-5d70-a749-80bc6c59660f",
      "change_type": "changed",
      "created_at": "2025-06-06T00:23:25.940",
      "data": {
        "new_price": 3200
      }
    },
    {
      "id": 4695869,
      "inner_id": "4cc1f031-6d94-6e81-b85a-91cd7d60771g",
      "change_type": "removed",
      "created_at": "2025-06-06T12:15:30.442"
    }
  ],
  "meta": {
    "cur_from_id": "4695866",
    "limit": 10
  }
}