spotahome.com APIspotahome.com ↗
Search Spotahome rental listings by city, budget, and dates. Get full property details, availability windows, and landlord profiles via 4 structured endpoints.
curl -X GET 'https://api.parse.bot/scraper/ec24583a-0d83-444d-aa39-af95b486f69e/search_listings?city=madrid&page=1' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for rental listings by city and optional filters. Returns paginated results with listing summaries including price, location, and landlord scoring.
| Param | Type | Description |
|---|---|---|
| city | string | City slug (e.g. 'madrid', 'barcelona', 'berlin') |
| page | integer | Page number for pagination |
| move_in | string | Move-in date in YYYY-MM-DD format |
| move_out | string | Move-out date in YYYY-MM-DD format |
| max_budget | integer | Maximum monthly rent budget in EUR |
| min_budget | integer | Minimum monthly rent budget in EUR |
| pets_friendly | boolean | Filter for pet-friendly listings (client-side text filter on title/description) |
{
"type": "object",
"fields": {
"page": "integer current page number",
"total": "integer total number of matching listings",
"listings": "array of listing summary objects with id, title, description, type, url, displayPrice, billsIncluded, mainPhotoUrl, firstAvailableDate, currencyIsoCode, location, reviews, landlordScoring"
},
"sample": {
"data": {
"page": 1,
"total": 11937,
"listings": [
{
"id": "568697",
"url": "/madrid/for-rent:rooms/568697",
"type": "room_shared",
"title": "Room for rent in a residence in Justicia, Madrid",
"reviews": {
"ratingAverage": null
},
"location": {
"city": "Madrid",
"street": "Calle de San Bernardo",
"postalCode": "28015"
},
"description": "Furnished 5-bedroom apartment for rent on Calle De San Bernardo,. The property is on the 3rd floor.",
"displayPrice": "550",
"mainPhotoUrl": "https://photos.spotahome.com/smww_768_verified_ur_6_50/294b95f9bd5d2ea5f52ed394fc20e397a9ced20edf1e407d9c1c4fb4.jpg",
"billsIncluded": "some",
"currencyIsoCode": "EUR",
"landlordScoring": {
"score": 430,
"totalBookingsClosed": 60
},
"firstAvailableDate": "2026-06-14T00:00:00+0000"
}
]
},
"status": "success"
}
}About the spotahome.com API
The Spotahome API exposes 4 endpoints for querying mid- to long-term rental listings across Spotahome's global inventory. Use search_listings to filter properties by city, budget range, and move-in/move-out dates, then pull full property details, availability windows, and landlord scoring with the remaining endpoints. Each search result returns fields including displayPrice, billsIncluded, firstAvailable, and a direct listing URL.
Search and Filter Listings
The search_listings endpoint accepts a city slug (e.g. madrid, berlin, barcelona), optional date range via move_in and move_out (YYYY-MM-DD), and budget bounds via min_budget and max_budget in EUR. Results are paginated; the response includes page, total, and a listings array. Each summary object carries id, title, type, displayPrice, billsIncluded, mainPhotoUrl, and firstAvailable — enough to render a listing card without a second call.
Property Details and Availability
get_listing_details takes a numeric listing_id from search results and returns a full property object covering pricing, features, photos, rules, and statistics, alongside a landlord sub-object and city_info metadata. To check booking terms specifically, get_listing_availability returns min_stay, max_stay, available_from, an instant_booking object (with isEnabled and rules), and a cancellation_policy string — all scoped to that listing.
Landlord Profiles
get_landlord_details surfaces the landlord's name, type (e.g. private), scoring (including score and totalBookingsClosed), years_with_us, first_listing_date, listings_published, and average_response_time. These fields are useful for comparing host reliability across multiple listings before deeper integration. The landlord_id field can serve as a stable cross-reference if you're tracking a host's portfolio over time.
- Build a rental search tool that filters Spotahome listings by city, move-in date, and monthly budget.
- Compare bills-included vs. bills-excluded pricing across cities using the
billsIncludedanddisplayPricefields. - Flag listings with instant booking enabled using the
instant_booking.isEnabledfield fromget_listing_availability. - Score and rank landlords by
totalBookingsClosedandaverage_response_timewhen aggregating listings. - Monitor pet-friendly listing availability in a target city using the
pets_friendlyfilter insearch_listings. - Track minimum and maximum stay requirements across listings to match tenant constraints against
min_stayandmax_stay. - Aggregate landlord portfolio size by combining
listings_publishedandyears_with_usfromget_landlord_details.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does Spotahome have an official public developer API?+
What does `search_listings` return beyond price and title?+
id, title, description, type, url, displayPrice, billsIncluded, mainPhotoUrl, and firstAvailable. The total field tells you the full count of matching listings regardless of the current page, which is useful for estimating pagination depth.Does the API expose neighborhood-level or map coordinate data for listings?+
city_info but do not expose latitude/longitude coordinates or sub-neighborhood labels. You can fork the API on Parse and revise it to add a geographic fields endpoint if precise location data is needed.Are tenant reviews or per-listing ratings accessible through these endpoints?+
get_landlord_details (including score and totalBookingsClosed) but does not surface individual tenant reviews or per-listing review text. You can fork the API on Parse and revise it to add a reviews endpoint.How does pagination work in `search_listings`?+
page parameter to step through results. The response always includes a total count of matching listings, so you can calculate the number of pages needed. There is no cursor-based pagination; pages are sequential integers starting from 1.