{
  "openapi": "3.0.1",
  "info": {
    "title": "Mobile.de Scraper — German Used Car Listings, Prices & Specs",
    "description": "Scrape mobile.de used car listings: BMW, Mercedes, VW, Audi & all makes. Extract prices, mileage, fuel type, transmission, price rating, dealer phone & GPS, features, images. Search by make/model or URL. JSON/CSV export. 128–512 MB RAM.",
    "version": "0.2",
    "x-build-id": "OIBlHPZq808H8yIf1"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/crawloop~mobile-de-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-crawloop-mobile-de-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    },
    "/acts/crawloop~mobile-de-scraper/runs": {
      "post": {
        "operationId": "runs-sync-crawloop-mobile-de-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor and returns information about the initiated run in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/runsResponseSchema"
                }
              }
            }
          }
        }
      }
    },
    "/acts/crawloop~mobile-de-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-crawloop-mobile-de-scraper",
        "x-openai-isConsequential": false,
        "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
        "tags": [
          "Run Actor"
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/inputSchema"
              }
            }
          }
        },
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "Enter your Apify token here"
          }
        ],
        "responses": {
          "200": {
            "description": "OK"
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "inputSchema": {
        "type": "object",
        "properties": {
          "startUrls": {
            "title": "Start URLs (mobile.de search or listing pages)",
            "type": "array",
            "description": "Paste mobile.de search result URLs or individual vehicle listing URLs. All search filters from the URL (make, price, year, mileage, fuel, transmission) are applied automatically.",
            "items": {
              "type": "object",
              "required": [
                "url"
              ],
              "properties": {
                "url": {
                  "type": "string",
                  "title": "URL of a web page",
                  "format": "uri"
                }
              }
            }
          },
          "make": {
            "title": "Make / brand (BMW, Mercedes-Benz, VW, …)",
            "type": "string",
            "description": "Vehicle brand name in plain text, e.g. BMW, Mercedes-Benz, Volkswagen, Audi, Opel. Resolved automatically against the mobile.de catalog. Leave empty when using Start URLs."
          },
          "model": {
            "title": "Model (320, A 200, Golf, …)",
            "type": "string",
            "description": "Model name, e.g. 320, A 200, Golf, Passat. Only used together with Make."
          },
          "vehicleCategory": {
            "title": "Vehicle category",
            "enum": [
              "Car",
              "Motorbike",
              "MotorHome",
              "TruckOver7500",
              "VanUpTo7500",
              "ConstructionMachine",
              "Trailer",
              "AgriculturalVehicle"
            ],
            "type": "string",
            "description": "Vehicle type to search: cars, motorbikes, motorhomes, trucks, vans, construction machines, trailers, or agricultural vehicles.",
            "default": "Car"
          },
          "minPrice": {
            "title": "Minimum price (€)",
            "type": "integer",
            "description": "Filter by minimum gross vehicle price in euros."
          },
          "maxPrice": {
            "title": "Maximum price (€)",
            "type": "integer",
            "description": "Filter by maximum gross vehicle price in euros."
          },
          "minYear": {
            "title": "Min first registration year",
            "type": "integer",
            "description": "Earliest first-registration (EZ) year, e.g. 2018."
          },
          "maxYear": {
            "title": "Max first registration year",
            "type": "integer",
            "description": "Latest first-registration (EZ) year, e.g. 2023."
          },
          "maxMileage": {
            "title": "Max mileage (km)",
            "type": "integer",
            "description": "Maximum vehicle mileage in kilometers."
          },
          "fuelType": {
            "title": "Fuel type",
            "enum": [
              "all",
              "PETROL",
              "DIESEL",
              "ELECTRICITY",
              "HYBRID",
              "LPG",
              "CNG"
            ],
            "type": "string",
            "description": "Filter by fuel type: petrol, diesel, electric, hybrid, LPG, or natural gas.",
            "default": "all"
          },
          "transmission": {
            "title": "Transmission / gearbox",
            "enum": [
              "all",
              "MANUAL_GEAR",
              "AUTOMATIC_GEAR",
              "SEMIAUTOMATIC_GEAR"
            ],
            "type": "string",
            "description": "Filter by gearbox: manual, automatic, or semi-automatic.",
            "default": "all"
          },
          "excludeDamaged": {
            "title": "Exclude damaged / accident vehicles",
            "type": "boolean",
            "description": "Skip listings marked as damaged or accident vehicles on mobile.de.",
            "default": false
          },
          "sortBy": {
            "title": "Sort results",
            "enum": [
              "relevance",
              "price_asc",
              "price_desc",
              "newest"
            ],
            "type": "string",
            "description": "Sort order for search results: relevance, price low-to-high, price high-to-low, or newest listings first.",
            "default": "relevance"
          },
          "maxItems": {
            "title": "Max listings",
            "minimum": 1,
            "type": "integer",
            "description": "Maximum number of vehicle listings to collect per run.",
            "default": 100
          },
          "scrapeDetails": {
            "title": "Scrape full listing details",
            "type": "boolean",
            "description": "Fetch full vehicle detail data: 30+ specs, equipment list, description, net price & VAT, dealer name, address, phone numbers, and ratings. Disable for faster search-summary output.",
            "default": true
          },
          "maxConcurrency": {
            "title": "Max concurrent detail requests",
            "minimum": 1,
            "maximum": 25,
            "type": "integer",
            "description": "How many vehicle detail pages to fetch in parallel. Higher = faster for large runs. Default 10.",
            "default": 10
          },
          "proxyConfiguration": {
            "title": "Proxy configuration",
            "type": "object",
            "description": "Optional proxy for large-volume scraping. Germany residential proxy recommended for 100+ listings on Apify Cloud."
          }
        }
      },
      "runsResponseSchema": {
        "type": "object",
        "properties": {
          "data": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              },
              "actId": {
                "type": "string"
              },
              "userId": {
                "type": "string"
              },
              "startedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "finishedAt": {
                "type": "string",
                "format": "date-time",
                "example": "2025-01-08T00:00:00.000Z"
              },
              "status": {
                "type": "string",
                "example": "READY"
              },
              "meta": {
                "type": "object",
                "properties": {
                  "origin": {
                    "type": "string",
                    "example": "API"
                  },
                  "userAgent": {
                    "type": "string"
                  }
                }
              },
              "stats": {
                "type": "object",
                "properties": {
                  "inputBodyLen": {
                    "type": "integer",
                    "example": 2000
                  },
                  "rebootCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "restartCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "resurrectCount": {
                    "type": "integer",
                    "example": 0
                  },
                  "computeUnits": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "options": {
                "type": "object",
                "properties": {
                  "build": {
                    "type": "string",
                    "example": "latest"
                  },
                  "timeoutSecs": {
                    "type": "integer",
                    "example": 300
                  },
                  "memoryMbytes": {
                    "type": "integer",
                    "example": 1024
                  },
                  "diskMbytes": {
                    "type": "integer",
                    "example": 2048
                  }
                }
              },
              "buildId": {
                "type": "string"
              },
              "defaultKeyValueStoreId": {
                "type": "string"
              },
              "defaultDatasetId": {
                "type": "string"
              },
              "defaultRequestQueueId": {
                "type": "string"
              },
              "buildNumber": {
                "type": "string",
                "example": "1.0.0"
              },
              "containerUrl": {
                "type": "string"
              },
              "usage": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "integer",
                    "example": 1
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              },
              "usageTotalUsd": {
                "type": "number",
                "example": 0.00005
              },
              "usageUsd": {
                "type": "object",
                "properties": {
                  "ACTOR_COMPUTE_UNITS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATASET_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "KEY_VALUE_STORE_WRITES": {
                    "type": "number",
                    "example": 0.00005
                  },
                  "KEY_VALUE_STORE_LISTS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_READS": {
                    "type": "integer",
                    "example": 0
                  },
                  "REQUEST_QUEUE_WRITES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_INTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "DATA_TRANSFER_EXTERNAL_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                    "type": "integer",
                    "example": 0
                  },
                  "PROXY_SERPS": {
                    "type": "integer",
                    "example": 0
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}