{
  "openapi": "3.0.1",
  "info": {
    "title": "AutoScout24 Scraper - Car Listings and Details",
    "description": "Scrape AutoScout24, Europe's largest car marketplace: search used and new car listings across 8 countries by make, model, price, year, mileage, and fuel, and pull full car details with specs, equipment, price, seller, phone, and location. Export to JSON, CSV, or Excel.",
    "version": "0.0",
    "x-build-id": "9wNC1kCfqgUoBQmeb"
  },
  "servers": [
    {
      "url": "https://api.apify.com/v2"
    }
  ],
  "paths": {
    "/acts/sourabhbgp~autoscout24-scraper/run-sync-get-dataset-items": {
      "post": {
        "operationId": "run-sync-get-dataset-items-sourabhbgp-autoscout24-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/sourabhbgp~autoscout24-scraper/runs": {
      "post": {
        "operationId": "runs-sync-sourabhbgp-autoscout24-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/sourabhbgp~autoscout24-scraper/run-sync": {
      "post": {
        "operationId": "run-sync-sourabhbgp-autoscout24-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",
        "required": [
          "mode"
        ],
        "properties": {
          "mode": {
            "title": "Mode",
            "enum": [
              "search",
              "detail"
            ],
            "type": "string",
            "description": "What to scrape. 'search' returns car listings for your make/model/filter query. 'detail' returns full car data for the listing URLs you provide.",
            "default": "search"
          },
          "searchUrl": {
            "title": "Search URL (optional)",
            "type": "string",
            "description": "Search mode. Paste a full AutoScout24 search URL (https://www.autoscout24.com/lst/...) to scrape exactly that result set. If set, it overrides the make/model/filter fields below."
          },
          "make": {
            "title": "Make",
            "type": "string",
            "description": "Search mode. Car make slug, e.g. 'bmw', 'volkswagen', 'audi', 'mercedes-benz', 'renault', 'fiat'. Leave empty to search all makes."
          },
          "model": {
            "title": "Model (optional)",
            "type": "string",
            "description": "Search mode. Model slug within the make, e.g. 'x1', 'golf', 'a4'. Requires a make. Leave empty for all models."
          },
          "countries": {
            "title": "Countries",
            "type": "array",
            "description": "Search mode. Which country markets to include. Leave empty for all 8.",
            "items": {
              "type": "string",
              "enum": [
                "D",
                "A",
                "B",
                "E",
                "F",
                "I",
                "L",
                "NL"
              ],
              "enumTitles": [
                "Germany",
                "Austria",
                "Belgium",
                "Spain",
                "France",
                "Italy",
                "Luxembourg",
                "Netherlands"
              ]
            },
            "default": []
          },
          "adType": {
            "title": "Condition",
            "enum": [
              "both",
              "new",
              "used"
            ],
            "type": "string",
            "description": "Search mode. New, used, or both.",
            "default": "both"
          },
          "priceFrom": {
            "title": "Price from (EUR)",
            "minimum": 0,
            "type": "integer",
            "description": "Search mode. Minimum price in EUR."
          },
          "priceTo": {
            "title": "Price to (EUR)",
            "minimum": 0,
            "type": "integer",
            "description": "Search mode. Maximum price in EUR."
          },
          "yearFrom": {
            "title": "First registration year from",
            "minimum": 1900,
            "maximum": 2100,
            "type": "integer",
            "description": "Search mode. Earliest first-registration year, e.g. 2015."
          },
          "yearTo": {
            "title": "First registration year to",
            "minimum": 1900,
            "maximum": 2100,
            "type": "integer",
            "description": "Search mode. Latest first-registration year."
          },
          "mileageTo": {
            "title": "Max mileage (km)",
            "minimum": 0,
            "type": "integer",
            "description": "Search mode. Maximum mileage in kilometers."
          },
          "fuelType": {
            "title": "Fuel type",
            "enum": [
              "",
              "B",
              "D",
              "2",
              "3",
              "E",
              "H",
              "L",
              "M",
              "O",
              "C"
            ],
            "type": "string",
            "description": "Search mode. Restrict to a fuel type.",
            "default": ""
          },
          "transmission": {
            "title": "Transmission",
            "enum": [
              "",
              "A",
              "M",
              "S"
            ],
            "type": "string",
            "description": "Search mode. Restrict to automatic or manual.",
            "default": ""
          },
          "sort": {
            "title": "Sort by",
            "enum": [
              "standard",
              "price",
              "age",
              "mileage",
              "power",
              "year"
            ],
            "type": "string",
            "description": "Search mode. Result ordering.",
            "default": "standard"
          },
          "maxItems": {
            "title": "Max listings (search mode)",
            "minimum": 1,
            "maximum": 20000,
            "type": "integer",
            "description": "Search mode only. Maximum number of listings to return. Results are paginated 20 per page. AutoScout24 caps a single query at ~4000 results (200 pages); narrow by make/model/country/price to go deeper.",
            "default": 100
          },
          "listingUrls": {
            "title": "Listing URLs (detail mode)",
            "type": "array",
            "description": "Detail mode only. AutoScout24 listing URLs (https://www.autoscout24.com/offers/...).",
            "items": {
              "type": "string"
            }
          }
        }
      },
      "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
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}