Type · algorithmic

Growth · Software Engineer Interview Guide
Sign up to see ATSHeadquartered in IndiaInterview language: English
How to Pass the CRED Software Engineer Interview in 2026
The CRED DNA (TL;DR)
The CRED 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 CRED interview outcomes, avoid these common traps:
- Failing to handle scenarios with no transactions or no eligible cashback.
- Attributing the problem solely to external factors without taking ownership.
- Not demonstrating an understanding of CRED's core business model or its unique value proposition in the fintech space.
- Proposing a monolithic database solution without considering scalability for millions of users.
Test Yourself: Real CRED Questions
Three real prompts pulled from our database.
Type · code-clarity
Type · debugging
+ many more questions, signals, and worked examples
Sign up to unlock the full CRED grading rubric
CRED Interview Question Bank
A sample from our database, grouped by round. Sign up to see the full set.
9 of 14 questions shown
Recruiter Screen
1- 1
Type · motivation
What interests you specifically about working at CRED, a fintech company focused on credit card rewards and payments, compared to other tech companies?
Coding Screen
3- 2
Type · algorithmic
Imagine CRED has millions of users and you need to design a system to detect fraudulent transactions in real-time. Given a stream of transactions (user_id, amount, timestamp, merchant_id), write a function that returns a list of user_ids flagged for potential fraud based on a rule: a user is flagged if they make more than 5 transactions within a 1-minute window. Assume you have a way to access historical transaction data. - 3
Type · algorithmic
CRED wants to offer personalized rewards based on user spending patterns. Given a list of user transactions, where each transaction is a tuple (user_id, category, amount, timestamp), write a function to find the top 3 spending categories for each user in the last 30 days. Return a dictionary where keys are user_ids and values are lists of top 3 categories. - + 1 more questions in this round (sign up to unlock)
System Design
3- 4
Type · design
Design a system to display the 'CRED Store' catalog to millions of users. Consider aspects like product discovery, search, caching, and handling high read traffic. What are the key components and trade-offs? - 5
Type · design
Design a notification system for CRED that can send alerts to users about upcoming bill payments, reward expirations, and new offers. The system needs to be reliable, scalable, and support multiple channels (in-app, push, SMS). - + 1 more questions in this round (sign up to unlock)
Onsite Coding
4- 6
Type · debugging
Here's a piece of Python code that's supposed to calculate the average reward points earned per transaction for a user, but it's producing incorrect results or crashing. Debug and fix the code. [Provide a buggy code snippet involving date parsing, division by zero, or incorrect aggregation]. - 7
Type · algorithmic
CRED's rewards engine needs to efficiently find all users who have spent over a certain amount in a specific category within a given time frame. Given a large dataset of transactions (user_id, category, amount, timestamp), implement a function that returns a list of user_ids matching these criteria. Optimize for performance. - + 2 more questions in this round (sign up to unlock)
Behavioral / Leadership
3- 8
Type · ownership
Tell me about a time you encountered a significant technical challenge or bug in a production system that was impacting users. What steps did you take to diagnose, resolve, and prevent recurrence? - 9
Type · collaboration
At CRED, we often balance the tension between adding high-friction security layers for financial compliance and maintaining the seamless, premium UX our members expect. Describe a specific feature development where you had to advocate for a technical design that prioritized user experience while satisfying a compliance or risk team's requirement. How did you align the technical implementation with both business objectives? - + 1 more questions in this round (sign up to unlock)
Unlock all 14 CRED 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 CRED
How CRED's DNA translates across functions. Pick your role.
Compare CRED with similar employers
Same DNA, different bar. Browse the closest companies in our database and see how their loops differ.
N26
Same tierN26's 'The first bank you' principle guides evaluation, seeking candidates who demonstrate a clear understanding of u...
See N26 interview questions
Adfin
Same tierAdfin's interview rounds prioritize a candidate's ability to articulate complex financial concepts, particularly how ...
See Adfin interview questions
Revolut
Same tierRevolut's 'Get It Done' value is central, assessing candidates on their ability to rapidly execute and deliver tangib...
See Revolut interview questions
Practice CRED interviews end-to-end
CRED Mock Interview
Run a live mock interview with our AI interviewer using CRED-style prompts. Get scored on structure, signal, and answer length - exactly how the real loop grades you.
Open
STAR Stories for CRED Behavioral Rounds
Build a Story Bank of your past wins, mapped to the leadership signals CRED interviewers grade on. Reuse them across every behavioral round.
Open
CRED Interview Prep Hub
The frameworks behind every CRED 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 CRED interviewers nod instead of frown. Step-by-step playbooks with the moves and the pitfalls.
Open
Sample answers
What a strong answer to these CRED interview questions shows.
Imagine CRED has millions of users and you need to design a system to detect fraudulent transactions in real-time. Given a stream of transactions (user_id, amount, timestamp, merchant_id), write a function that returns a list of user_ids flagged for potential fraud based on a rule: a user is flagged if they make more than 5 transactions within a 1-minute window. Assume you have a way to access historical transaction data.
A strong answer shows: Efficient handling of streaming data; Correct implementation of sliding window logic; Consideration of edge cases and constraints.
Refactor this existing code snippet [provide a poorly written, complex function related to CRED's business logic, e.g., reward calculation] to improve its readability, maintainability, and testability. Explain your changes and the reasoning behind them.
A strong answer shows: Improved code readability and structure; Application of clean code principles; Clear explanation of refactoring choices; Enhanced maintainability and testability.