Fewo Direkt APIfewo-direkt.de ↗
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.
curl -X GET 'https://api.parse.bot/scraper/85998f47-bd0f-4eb3-a85f-184c087be180/search_prices?adults=2&check_in=2026-08-20&check_out=2026-08-27&destination=Berlin%2C+Deutschland¤cy=EUR' \ -H 'X-API-Key: $PARSE_API_KEY'
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.
| Param | Type | Description |
|---|---|---|
| adults | integer | Number of adult guests. |
| check_inrequired | string | Check-in date in ISO format YYYY-MM-DD. |
| currency | string | Currency code for prices (e.g. EUR, USD, GBP). |
| check_outrequired | string | Check-out date in ISO format YYYY-MM-DD. |
| destination | string | Destination name as shown on the site (e.g. 'Berlin, Deutschland', 'München, Deutschland', 'Mallorca, Spanien'). |
{
"type": "object",
"fields": {
"adults": "Number of adults searched",
"check_in": "Echoed check-in date",
"currency": "Currency code used for prices",
"check_out": "Echoed check-out date",
"properties": "Array of property objects with pricing",
"destination": "Echoed destination search term",
"total_results": "Number of properties returned"
},
"sample": {
"data": {
"adults": 2,
"check_in": "2026-08-20",
"currency": "EUR",
"check_out": "2026-08-27",
"properties": [
{
"url": "https://www.fewo-direkt.de/ferienwohnung-ferienhaus/p4120217vb",
"name": "Gemütliches Alternatives Zimmer",
"price": 463.14,
"currency": "EUR",
"property_id": "107269110",
"price_formatted": "463 €",
"strikeout_price": 501.64,
"strikeout_price_formatted": "502 €"
},
{
"url": "https://www.fewo-direkt.de/pdp/lo/18235468",
"name": "Ocak Aparthotel",
"price": 488.25,
"currency": "EUR",
"property_id": "18235468",
"price_formatted": "488 €",
"strikeout_price": 524.93,
"strikeout_price_formatted": "525 €"
}
],
"destination": "Berlin, Deutschland",
"total_results": 50
},
"status": "success"
}
}About the Fewo Direkt API
The Fewo Direkt API on Parse exposes 1 endpoint for the publicly available data on fewo-direkt.de. Calls return JSON over HTTPS and are billed per successful response.
Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.