# Immoscout24 (Germany) — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search and browse real estate listings from Germany's leading property portal Immobilienscout24. Filter by location, property type, and price range, and retrieve comprehensive listing details including size, amenities, contact information, and more.

**Category:** Real Estate | **Website:** [immoscout24.de/](https://immoscout24.de/) | **Docs:** [parse.bot/marketplace/21cad484-7293-4e29-a41f-4f8a577e507d/immoscout24-de-api](https://parse.bot/marketplace/21cad484-7293-4e29-a41f-4f8a577e507d/immoscout24-de-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-immoscout24-de-api-21cad484/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_listing_details

Retrieve full details for a specific listing by its Scout ID. Returns a flat key-value object with all available property attributes including rent, living space, rooms, address components, building features, and geographic metadata. Field names are prefixed with 'obj_' for property attributes and 'geo_' for geographic data.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `id` | string | Yes | The Scout ID of the listing, a numeric string (e.g. '164121835'). Obtainable from search_listings results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-immoscout24-de-api-21cad484/get_listing_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"id":"<string>"}'
```

### search_listings

Search for real estate listings in Germany by region and type. Returns paginated results with listing summaries including title, address, price, living space, and room count. The base pagination unit is 20 listings per page. Results are drawn from the embedded search model on the IS24 search page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `location` | string | No | Location path in the format 'state/city' or 'state/city/district', e.g. 'berlin/berlin', 'bayern/muenchen', 'nordrhein-westfalen/koeln'. |
| `page` | integer | No | Page number for pagination, starting from 1. |
| `real_estate_type` | string | No | Type of real estate listing. Accepted values: 'wohnung-mieten' (apartment rent), 'wohnung-kauf' (apartment buy), 'haus-mieten' (house rent), 'haus-kauf' (house buy). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-immoscout24-de-api-21cad484/search_listings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"location":"<string>","page":"<integer>","real_estate_type":"<string>"}'
```
