# Bulk-enrich a list of AutoScout24 listing URLs

**Use case:** 

Feed in a dealer export, watchlist or crawler output of autoscout24.de URLs and get structured price, spec and ownership data you can join to your own.

## Input

```json
{
  "items": [
    "https://www.autoscout24.de/angebote/bmw-1er-118i-m-sport-pdc-tempo-shz-alu-klima-benzin-blau-cat_ma13gr100037ge192va4087mt521tr5338-12115ba2-7de7-4424-8663-2c0ece05f283",
    "https://www.autoscout24.de/angebote/audi-a4-1-hand-diesel-weiss-cat_ma9gr1626ge133va133mt175tr479950-4b7e9dd6-4af5-46ae-8d42-2d6294301d76",
    "https://www.autoscout24.de/angebote/mercedes-benz-sprinter-129ps-diesel-weiss-cat_ma47gr15943ge673va598mt2900tr480531-e0db63f3-cf57-4e8d-b94c-53af7bfc9eaa",
    "https://www.autoscout24.de/angebote/tesla-model-3-long-range-1-hand-unfallfrei-elektro-weiss-cat_ma51520gr201429ge1416mt13664tr480831-ea415af7-8a1e-4751-a51d-f48454cd0b96",
    "https://www.autoscout24.de/angebote/hyundai-i10-1-0-5-gang-comfort-klima-5j-grantie-navi-rfk-benzin-grau-cat_ma33gr19123ge1362mt2243tr8068-686907c1-4c2f-422f-acd7-ab3fe7c8f70f"
  ],
  "maxConcurrency": 8,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "data.make": {
    "label": "Make",
    "format": "text"
  },
  "data.model": {
    "label": "Model",
    "format": "text"
  },
  "data.price": {
    "label": "Price",
    "format": "number"
  },
  "data.currency": {
    "label": "Currency",
    "format": "text"
  },
  "data.mileageKm": {
    "label": "Mileage (km)",
    "format": "number"
  },
  "data.productionDate": {
    "label": "Production date",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [AutoScout24 Listing Lookup — Car Data & Specs API](https://apify.com/accountable_eel/autoscout24-listing-lookup.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/accountable_eel/autoscout24-listing-lookup.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/accountable_eel/autoscout24-listing-lookup.md

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).
