# Immonet — 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 real estate listings across Germany and retrieve detailed property information including pricing, features, and location data from immonet.de. Find properties for sale or rent with comprehensive market data.

**Category:** Real Estate | **Website:** [immonet.de/](https://immonet.de/) | **Docs:** [parse.bot/marketplace/1c84831a-b472-40bf-b767-6efbbf7def25/immonet-de-api](https://parse.bot/marketplace/1c84831a-b472-40bf-b767-6efbbf7def25/immonet-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-immonet-de-api-1c84831a/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_details

Get comprehensive property details including attributes (price, area, rooms), agent contact info, location, features, description text, and image URLs for a specific listing. Requires a valid listing UUID obtained from search results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `uuid` | string | Yes | Property listing UUID from search results (alphanumeric with hyphens, e.g. '1215b46c-9e03-4081-bc72-67209544ff9f'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-immonet-de-api-1c84831a/get_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"uuid":"<string>"}'
```

### search

Search for real estate listings (apartments, houses, etc.) in Germany. Returns paginated results with listing summaries including price, area, and rooms. Pagination via page number; each page returns up to 20 listings. Total count reflects the server-reported number of matching properties.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `distribution_type` | string | No | Transaction type for the listing. |
| `estate_type` | string | No | Type of property. |
| `location` | string | No | City or region name (e.g., 'berlin', 'hamburg', 'muenchen'). |
| `page` | integer | No | Page number for pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-immonet-de-api-1c84831a/search \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"distribution_type":"<string>","estate_type":"<string>","location":"<string>","page":"<integer>"}'
```
