# Fewo Direkt — 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 for vacation rental properties across FeWo-direkt and instantly retrieve their pricing for your desired travel dates and destination. Get detailed price information to compare rental options and plan your German getaway efficiently.

**Category:** Travel | **Website:** [www.fewo-direkt.de/](https://www.fewo-direkt.de/) | **Docs:** [parse.bot/marketplace/5a03b3fe-6669-4dda-9003-8597e0c94207/fewo-direkt-de-api](https://parse.bot/marketplace/5a03b3fe-6669-4dda-9003-8597e0c94207/fewo-direkt-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-fewo-direkt-de-api-5a03b3fe/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_prices

Search vacation rental properties and return pricing for a given destination and date range. Returns up to ~50 properties per call with nightly/total price, strikeout price, currency, property name and ID. Results are sorted by recommended order.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `adults` | integer | No | Number of adult guests. |
| `check_in` | string | Yes | Check-in date in ISO format YYYY-MM-DD. |
| `check_out` | string | Yes | Check-out date in ISO format YYYY-MM-DD. |
| `currency` | string | No | Currency code for prices (e.g. EUR, USD, GBP). |
| `destination` | string | No | Destination name as shown on the site (e.g. 'Berlin, Deutschland', 'München, Deutschland', 'Mallorca, Spanien'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-fewo-direkt-de-api-5a03b3fe/search_prices \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"adults":"<integer>","check_in":"<string>","check_out":"<string>","currency":"<string>","destination":"<string>"}'
```
