Discover/spotahome.com API
live

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.

Endpoints
4
Updated
3mo ago
Try it
City slug (e.g. 'madrid', 'barcelona', 'berlin')
Page number for pagination
Move-in date in YYYY-MM-DD format
Move-out date in YYYY-MM-DD format
Maximum monthly rent budget in EUR
Minimum monthly rent budget in EUR
Filter for pet-friendly listings (client-side text filter on title/description)
api.parse.bot/scraper/ec24583a-0d83-444d-aa39-af95b486f69e/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
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'
All endpoints · 4 totalclick to expand

Search for rental listings by city and optional filters. Returns paginated results with listing summaries including price, location, and landlord scoring.

Input
ParamTypeDescription
citystringCity slug (e.g. 'madrid', 'barcelona', 'berlin')
pageintegerPage number for pagination
move_instringMove-in date in YYYY-MM-DD format
move_outstringMove-out date in YYYY-MM-DD format
max_budgetintegerMaximum monthly rent budget in EUR
min_budgetintegerMinimum monthly rent budget in EUR
pets_friendlybooleanFilter for pet-friendly listings (client-side text filter on title/description)
Response
{
  "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.

Common use cases
  • 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 billsIncluded and displayPrice fields.
  • Flag listings with instant booking enabled using the instant_booking.isEnabled field from get_listing_availability.
  • Score and rank landlords by totalBookingsClosed and average_response_time when aggregating listings.
  • Monitor pet-friendly listing availability in a target city using the pets_friendly filter in search_listings.
  • Track minimum and maximum stay requirements across listings to match tenant constraints against min_stay and max_stay.
  • Aggregate landlord portfolio size by combining listings_published and years_with_us from get_landlord_details.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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.

Frequently asked questions
Does Spotahome have an official public developer API?+
Spotahome does not publish a public developer API or documented partner integration surface for third-party developers.
What does `search_listings` return beyond price and title?+
Each listing summary includes 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?+
Not currently. The search results and detail endpoints return city-level metadata via 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?+
Not currently. The API exposes landlord-level scoring via 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`?+
Pass an integer 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.
Page content last updated . Spec covers 4 endpoints from spotahome.com.
Related APIs in Real EstateSee all →
padmapper.com API
Search and browse rental listings across cities with detailed property information including prices, contact details, and market trends. Discover apartments and homes through city-wide searches or map-based exploration, and access comprehensive listing details to help you find your next rental.
casa.it API
Search and browse property listings from Casa.it, Italy's real estate marketplace. Retrieve listings by location, price, size, property type, and transaction type (sale or rent), and fetch full details for individual properties including descriptions, photos, features, and publisher information.
catastro.minhap.es API
Search Spanish property records by address, coordinates, or cadastral reference to find detailed land parcel information, ownership details, and location data across all Spanish provinces and municipalities. Browse the complete hierarchy of Spanish geographic and administrative divisions including provinces, municipalities, and streets to pinpoint exact property locations.
immobiliare.it API
Search Italian property listings for sale or rent, browse real estate agencies, and explore price trends across Italian cities — all via immobiliare.it.
amberstudent.com API
Search student accommodation listings across popular cities and access comprehensive property information including room types, pricing trends, and tenant reviews. Get detailed insights into student housing options to compare amenities, prices, and community feedback all in one place.
zapimoveis.com.br API
Search and filter real estate listings across Brazil on ZAP Imóveis — the country's largest property portal. Retrieve listings for sale or rent with detailed attributes including price, location, size, bedrooms, bathrooms, parking, and amenities. Supports location autocomplete, property type discovery, and full listing detail retrieval.
homes.com API
Search for real estate agents and properties available for sale or rent, while accessing detailed agent profiles with their 1-year transaction history, active listings, and performance statistics. Get comprehensive property details and agent information all in one place to help you find the right agent or property that matches your needs.
idealista.pt API
Search and filter property listings across Portugal by location, price, and size, then access detailed information about each property including its characteristics and pricing history. Monitor how property prices change over time to help you make informed decisions about buying or selling real estate.