Search property listings, get location autocomplete, and retrieve detailed real estate data from Immowelt — Germany's leading property marketplace. Structured JSON, no web scraping headaches.
500 free credits/month · No credit card required
Structured data for real applications. Here are some ideas.
Track rental prices and property values across German cities. Build dashboards that monitor price trends by district, property type, and room count.
Build notification systems that alert users when new listings match their criteria — location, price range, size, and property type.
Aggregate listing data to compare properties, track vacancy rates, and estimate market values for real estate investment portfolios.
Power relocation platforms with live property data. Help users find housing in new cities with filters for commute time, neighborhood, and budget.
Everything you need in one API.
/api/immowelt/search
Search listings by location, type, price, rooms, and size
/api/immowelt/locations
Get location suggestions for search input
/api/immowelt/property
Retrieve full property details by listing ID
/api/immowelt/count
Get total listing count for a location
One API call. Structured JSON response.
curl -X GET "https://scrappa.co/api/immowelt/search?location=Berlin&type=apartment-rent" \
-H "Accept: application/json" \
-H "X-API-KEY: YOUR_API_KEY"
{
"success": true,
"total_results": 1234,
"page": 1,
"total_pages": 62,
"results": [
{
"id": "estate_abc123",
"title": "Schöne 3-Zimmer Wohnung in Mitte",
"price": 1450,
"price_formatted": "1.450 EUR",
"rooms": 3,
"size_m2": 82,
"address": "Berlin Mitte"
}
]
}
Sign up and get 500 free credits. No credit card required.