
Mobile.de APIScraper & Parser
Access Mobile.de Data via API. Automotive data scraper for the European car market. Real-time German vehicle listings and pricing.
Mobile.de API
Access organized vehicle data from Germany's leading automotive platform. Retrieve ready-to-use car data without building your own infrastructure.
Get new Mobile.de listings the moment they appear.
Daily exports of all active listings.
Access full Mobile.de data: Price, Mileage, Year, Brand, Model, Technical Specs, Equipment, Vehicle Condition, and Features.
Base URL
https://{access_name}.auto-api.com/api/v3/mobiledeAuthorization: api_key parameter
Workflow
/filtersget available filter values/offersget listings (with or without filters) - use for initial data loadFor updates (to keep data up-to-date after initial load):
/change_id?date=...get starting ID for changes feed/changes?change_id=...get all changes in the database starting from ID/offerget details of a specific listing by inner_idIntegration best practices:
1. Begin by fetching the complete dataset via /offers - page through all results for initial import
2. Set up scheduled calls to /changes to track new listings, price updates, and deletions for ongoing synchronization
3. For user-facing features, query /offers with filtering parameters (make, model, price range, year) and pagination controls
GET/filters
Returns all possible values for filtering
https://{access_name}.auto-api.com/api/v3/mobilede/filters?api_key=YOUR_API_KEYResponse:
{
"mark": {
"BMW": {
"model": ["3er", "5er", "X3", "X5"]
},
"Mercedes-Benz": {
"model": ["C-Klasse", "E-Klasse", "GLC"]
}
},
"transmission": ["Semi-automatic", "Manual gearbox", "Automatic"],
"color": ["Grey metallic", "Brown", "White matte", "Gold metallic", "Orange matte", "Black matte", "Beige metallic", "Purple metallic", "Yellow matte", "Green metallic", "Silver matte", "Red metallic", "Blue metallic", "Brown matte", "Gold matte", "Orange metallic", "Beige matte", "Yellow metallic", "Purple matte", "Blue matte", "Green matte", "Red matte", "Grey matte", "Black metallic", "White metallic", "Silver metallic", "Brown metallic", "Orange", "Grey", "Purple", "Black", "Silver", "Gold", "Yellow", "White", "Beige", "Green", "Blue", "Red"],
"body_type": ["Cabrio", "Van", "Estatecar", "Sportscar", "Vanmotorhome", "Estateminibusupto9seatsvan", "Smallcar", "Offroad", "Limousine", "Othercar"],
"engine_type": ["Hydrogen", "LPG", "Natural gas", "Ethanol (FFV, E85, etc.)", "Hybrid (diesel/electric)", "Hybrid (petrol/electric)", "Petrol", "Diesel", "Electric", "Other"],
"full_fuel_type": ["Hydrogen", "LPG", "Natural Gas", "Ethanol", "Hybrid (Diesel)", "Hybrid (Petrol)", "Petrol", "Diesel", "Electric", "Other"]
}GET/offers
List of listings with pagination and filters
Parameters:
page(required) - page numbermark, model- filters (case-insensitive)transmission, color, body_type, engine_type, full_fuel_type- filters (case-insensitive)year_from, year_to- year range filterkm_age_from, km_age_to- mileage range filterprice_from, price_to- price range filter (in EUR)
https://{access_name}.auto-api.com/api/v3/mobilede/offers?api_key=YOUR_API_KEY&page=1https://{access_name}.auto-api.com/api/v3/mobilede/offers?api_key=YOUR_API_KEY&page=1&mark=BMW&color=blackResponse:
{
"result": [
{
"id": 22185463,
"inner_id": "441188094",
"change_type": "added",
"created_at": "2025-12-15T12:30:00Z",
"data": {
"inner_id": "441188094",
"url": "https://suchen.mobile.de/auto-inserat/ford-ka-1-3-frankfurt/441188094.html",
"mark": "Ford",
"model": "Ka/Ka+",
"title": "Ford Ka 1.3 Cool & Sound Edition",
"sub_title": "Ka 1.3 Cool & Sound Edition",
"year": 2013,
"color": "white",
"price_eur": 1888,
"price_eur_nt": null,
"price_rating_label": "no_rating",
"km_age": 147000,
"engine_type": "petrol",
"full_fuel_type": "petrol",
"transmission": "manual gearbox",
"body_type": "smallcar",
"displacement": "1.2",
"horse_power": "69",
"num_seats": "4",
"doors_count": "2/3",
"owners_count": "1",
"emission_class": "euro5",
"emissions_sticker": "4 (green)",
"first_registration": "10/2013",
"hauptuntersuchung": "04/2026",
"climatisation": "a/c (man.)",
"airbags": "front airbags",
"interior_design": "cloth, black",
"ready_to_drive": "t",
"vehicle_condition": "used vehicle",
"seller_type": "dealer",
"seller_name": "HVP & CARS GmbH",
"seller_address2": "DE-65933 Frankfurt am Main",
"seller_country": "de",
"seller_phones": "[{\"type\":\"mobile\",\"number\":\"+49 174 1915633\"}]",
"options": "[\"ABS\",\"Alloy wheels\",\"Central locking\"]",
"image_urls": "[{\"url\":\"https://img.classistatic.de/.../mo-1024.jpg\"}]"
}
}
],
"meta": { "page": 1, "next_page": 2, "limit": 20 }
}Data fields:
- inner_id - listing ID on the platform
- url - link to the listing
- mark - car brand
- model - car model
- title - listing title
- year - production year
- color - color
- price_eur - price in EUR (gross)
- price_eur_nt - price in EUR (net, without VAT)
- price_rating_label - price rating
- km_age - mileage in km
- engine_type - engine type
- transmission - transmission type
- body_type - body type
- displacement - engine displacement (L)
- horse_power - power in hp
- num_seats - number of seats
- doors_count - number of doors
- owners_count - number of owners
- emission_class - emission class
- emissions_sticker - emissions sticker
- first_registration - first registration date
- hauptuntersuchung - inspection date (TÜV)
- climatisation - climate control
- airbags - airbags
- interior_design - interior design
- vehicle_condition - vehicle condition
- seller_type - seller type
- seller_name - seller name
- seller_phones - seller phones (JSON)
- options - list of options
- image_urls - array of image URLs
GET/change_id
Get first change ID by date (for use in /changes)
Parameters:
date(required) - date in yyyy-mm-dd format
https://{access_name}.auto-api.com/api/v3/mobilede/change_id?api_key=YOUR_API_KEY&date=2025-01-15Response:
{ "change_id": 7361482 }Use the returned value as the change_id parameter in /changes
GET/changes
Changes feed (added/changed/removed)
Parameters:
change_id(required) - starting from which change ID
https://{access_name}.auto-api.com/api/v3/mobilede/changes?api_key=YOUR_API_KEY&change_id=1Response:
{
"result": [
{
"id": 456,
"inner_id": "441188094",
"change_type": "added", // added - new listing
"created_at": "2025-01-15T10:30:00Z",
"data": { ... } // full listing data
},
{
"id": 457,
"inner_id": "441188095",
"change_type": "changed", // changed - price update
"created_at": "2025-01-15T10:31:00Z",
"data": { "new_price": 1799 }
},
{
"id": 458,
"inner_id": "441188096",
"change_type": "removed", // removed - listing deleted
"created_at": "2025-01-15T10:32:00Z"
}
],
"meta": { "cur_change_id": 1, "next_change_id": 21, "limit": 20 }
}GET/offer
Single listing by inner_id
Parameters:
inner_id(required)
https://{access_name}.auto-api.com/api/v3/mobilede/offer?api_key=YOUR_API_KEY&inner_id=441188094Response: data object (same as in /offers, but without result wrapper)
Data Retention Policy
Files stored for at least 3 days
API Availability Schedule
Daily export data files with updated content ready for download
CSV Data Format
CSV data files use pipe delimiter (|) for column separation
URL Structure:
Request Parameters:
access_name- access_name - your assigned subdomain identifierdate- date - target date in yyyy-mm-dd format (e.g., 2025-09-06)file_name- file_name - export file name with extension
Available Formats:
- CSV - all_active.csv, new_daily.csv, removed_daily.csv
- JSON - all_active.json, new_daily.json, removed_daily.json
- Excel - all_active.xlsx, new_daily.xlsx, removed_daily.xlsx
cURL API Request Example
curl -L -X GET 'https://{access_name}.auto-api.com/yyyy-mm-dd/all_active.csv' \
-H 'Authorization: Basic XXX' \
-o daily_car_data.csvWget Download Command
wget --method GET \
--header 'Authorization: Basic XXX==' \
'https://{access_name}.auto-api.com/yyyy-mm-dd/all_active.csv'Mobile.de is Germany's largest car marketplace where millions of buyers connect with dealers and private sellers across Europe. The platform hosts over one million active listings, covering everything from budget cars to luxury vehicles, motorcycles, and commercial trucks.
Launched in 1996, Mobile.de has become essential for car buyers and sellers. The platform processes thousands of new listings every day, providing detailed car histories, specifications, and photo galleries to help people make smart buying decisions.
Mobile.de offers advanced search tools that let users filter cars by technical specs, equipment, history, and location. The platform also provides price data and seller ratings to make car buying easier and safer.
The marketplace serves both individual buyers and business customers, with special tools for car dealers. This makes Mobile.de a key resource for car professionals in Germany and neighboring countries.
The Mobile.de API works 24/7, delivering new car listings within 1-2 minutes of posting and tracking when listings are removed to understand market trends. All data comes directly through our API endpoints without needing complex scrapers or custom tools.
Expand your automotive data coverage across global markets with our platform APIs: