Type · System Design

Growth · Software Engineer Interview Guide
Sign up to see ATSHeadquartered in SpainInterview language: Spanish
How to Pass the Idealista Software Engineer Interview in 2026
The Idealista DNA (TL;DR)
The Idealista Interview Loop
Your onsite loop will typically consist of 5 rounds.
- 1
Round 1
Recruiter ScreenMotivation, role fit, logistics. - 2
Round 2
Coding ScreenLeetCode-medium algorithmic problems under time pressure. - 3
Round 3
System DesignDistributed systems, trade-offs at scale, architecture under constraints. - 4
Round 4
Onsite CodingLeetCode-hard, debugging, code clarity, edge cases. - 5
Round 5
Behavioral / LeadershipPast evidence of ownership, influence, resolving conflict.
The Danger Zone: Top Reasons Candidates Fail
Based on our database of Idealista interview outcomes, avoid these common traps:
- Inefficiently checking historical data for each new event.
- Failing to propose an A/B test or data-driven experiment to resolve the stalemate
- Not demonstrating an understanding of Idealista's specific business or the retail domain.
- Treating identical strings as the only commonality, ignoring fuzzy matching.
Test Yourself: Real Idealista Questions
Three real prompts pulled from our database.
Type · Algorithmic
Type · Learning
+ many more questions, signals, and worked examples
Sign up to unlock the full Idealista grading rubric
Idealista Interview Question Bank
A sample from our database, grouped by round. Sign up to see the full set.
9 of 13 questions shown
Recruiter Screen
1- 1
Type · Motivation
What interests you most about working at Idealista, particularly within the retail sector, and how do you see your skills contributing to our mission of revolutionizing online real estate?
Coding Screen
3- 2
Type · Algorithmic
Given a list of property listings with their prices and locations, find the top K most expensive properties within a specified geographical radius. Assume you have access to a data structure that can efficiently query properties by location. - 3
Type · Algorithmic
You are given two sets of user search queries for Idealista: one from yesterday and one from today. Determine the percentage of queries that are common to both sets, considering minor variations in spelling (e.g., 'apartment' vs 'apartament'). - + 1 more questions in this round (sign up to unlock)
System Design
3- 4
Type · System Design
Design a real-time notification system for Idealista that alerts users when new properties matching their saved searches become available. Consider scalability for millions of users and properties. - 5
Type · System Design
Design the backend system for Idealista's 'Similar Properties' feature. Given a property ID, the system should return a list of visually and functionally similar properties. - + 1 more questions in this round (sign up to unlock)
Onsite Coding
3- 6
Type · Algorithmic
You are given a stream of property view events (user_id, property_id, timestamp). Implement a system to detect and flag potentially fraudulent activity, such as a single user viewing the same property hundreds of times within a minute. - 7
Type · Debugging
A user reports that their saved search filter for 'properties with a garden' is sometimes showing apartments that do not have gardens. Analyze the provided (simplified) code snippet for the property filtering logic and identify the bug. - + 1 more questions in this round (sign up to unlock)
Behavioral / Leadership
3- 8
Type · Conflict Resolution
Our search ranking team recently proposed a change to prioritize newer listings over high-engagement listings to keep inventory fresh, but the monetization team argued this would decrease lead conversion rates. How did you navigate a similar situation where technical optimization goals clashed with business KPIs? - 9
Type · Ownership
During a high-traffic period, such as the start of the month when property listings spike, you notice that our image processing pipeline is consistently lagging. Describe how you identified the bottleneck and the specific steps you took to improve the ingestion throughput for our property media assets. - + 1 more questions in this round (sign up to unlock)
Unlock all 13 Idealista questions, free
No credit card. Every question with its framework, the grading signals interviewers score against, and a worked answer for each.
Interview tracks at Idealista
How Idealista's DNA translates across functions. Pick your role.
Compare Idealista with similar employers
Same DNA, different bar. Browse the closest companies in our database and see how their loops differ.
ABOUT YOU
Same tierABOUT YOU seeks individuals who can drive tangible results within autonomous teams, demonstrating an entrepreneurial ...
See ABOUT YOU interview questions
Pixmania
Same tierThe 'Mon Panier Tous' user journey is a key focus in Pixmania's interviews, assessing how candidates would enhance th...
See Pixmania interview questions
Mister Spex
Same tierThe interview panel at Mister Spex frequently evaluates how candidates approach the synergy between online platforms ...
See Mister Spex interview questions
Practice Idealista interviews end-to-end
Idealista Mock Interview
Run a live mock interview with our AI interviewer using Idealista-style prompts. Get scored on structure, signal, and answer length - exactly how the real loop grades you.
Open
STAR Stories for Idealista Behavioral Rounds
Build a Story Bank of your past wins, mapped to the leadership signals Idealista interviewers grade on. Reuse them across every behavioral round.
Open
Idealista Interview Prep Hub
The frameworks behind every Idealista round: CIRCLES for product sense, hypothesis-driven debugging for analytical, STAR for behavioral. Learn each one in 10 minutes.
Open
Interview Frameworks
CIRCLES, STAR, AARRR, RICE, MECE. The exact frameworks that make Idealista interviewers nod instead of frown. Step-by-step playbooks with the moves and the pitfalls.
Open
Sample answers
What a strong answer to these Idealista interview questions shows.
Design a real-time notification system for Idealista that alerts users when new properties matching their saved searches become available. Consider scalability for millions of users and properties.
A strong answer shows: Understanding of message queues and event-driven architectures.; Experience with scalable fan-out patterns.; Knowledge of real-time communication protocols.; Consideration of trade-offs (latency vs. cost, consistency)..
Implement a function to calculate the 'match score' between a user's saved search preferences (e.g., min_bedrooms, max_price, neighborhood) and a new property listing. The score should be a weighted sum based on how well the property meets the preferences.
A strong answer shows: Ability to translate requirements into a quantifiable metric.; Good design for configurable parameters.; Robustness in handling incomplete data..