Thunes · Software Engineer
Updated · 2026-09-22

Thunes Software Engineer
Interview Guide

THE 60-SECOND BRIEF

As a Software Engineer at Thunes, you will be at the center of building the "Smart Superhighway" that moves money around the world. Thunes operates a proprietary Direct Global Network that enables real-time, cross-border payments across more than 130 countries and 80+ currencies. Your work directly impacts how millions of users, global gig economy giants (like Uber and Deliveroo), and major super-apps (like Grab and WeChat) transfer funds instantly and securely. This role is highly critical because the Thunes infrastructure connects to over 7 billion mobile wallets and bank accounts, alongside 15 billion cards globally. To support this massive scale, the engineering team designs, builds, and maintains highly available, low-latency APIs and services.

This guide is scoped to a Software Engineer candidate at Thunes.

Thunes candidates report 4 rounds over 3-5 weeks. The stages below are what candidates describe, not a published process.

Golang (Go)API Design (RESTful APIs)Event-Driven Architecture

20 min read

Practice 17 Software Engineer prompts
17Practice promptsAcross five skill areas

As a Software Engineer at Thunes, you will be at the center of building the "Smart Superhighway" that moves money around the world. Thunes operates a proprietary Direct Global Network that enables real-time, cross-border payments across more than 130 countries and 80+ currencies. Your work directly impacts how millions of users, global gig economy giants (like Uber and Deliveroo), and major super-apps (like Grab and WeChat) transfer funds instantly and securely. This role is highly critical because the Thunes infrastructure connects to over 7 billion mobile wallets and bank accounts, alongside 15 billion cards globally. To support this massive scale, the engineering team designs, builds, and maintains highly available, low-latency APIs and services. You will work on core products, including the SmartX Treasury System and the Fortress Compliance Platform, solving complex distributed systems problems around concurrency, data consistency, and transactional security. Joining Thunes means embracing a fast-growing, disruptive fintech environment. You will be challenged to own your code end-to-end—writing, testing, and deploying it multiple times a day. The engineering culture balances a agile startup mindset with the rigorous technical standards required to process millions of secure transactions 24/7.

01

Recruiter Call

reported

Initial screening call with a recruiter to discuss your background, motivations, and overall experience.

What to demonstrate

  • Initial screening call with a recruiter to discuss your background, motivations, and overall experience
  • Depth in Golang (Go)

How to prepare

  • Be able to walk your CV end to end in two minutes, and say why this company specifically.
  • Have your salary expectations, notice period and location constraints ready, and ask for the rest of the loop in writing.
Thunes Software Engineer candidate reports
02

Technical Screening

reported

A brief video recording or a short technical screening focusing on basic web concepts and security may follow the recruiter call.

What to demonstrate

  • A brief video recording or a short technical screening focusing on basic web concepts and security may follow the recruiter call
  • Depth in Golang (Go)

How to prepare

  • Answer aloud and timed: How do you handle idempotency in API transactions to prevent double-charging or duplicate transfers?
  • Answer aloud and timed: Describe how you would integrate an event-driven architecture using message brokers like RabbitMQ or Apache Kafka to handle asynchronous payment notifications.
Thunes Software Engineer candidate reports
03

Take-Home Assignment

reported

A comprehensive coding assignment requiring you to build a functional API or microservice using Golang or your language of choice.

What to demonstrate

  • A comprehensive coding assignment requiring you to build a functional API or microservice using Golang or your language of choice
  • Depth in Golang (Go)

How to prepare

  • Answer aloud and timed: How do you secure public-facing APIs against common security threats like man-in-the-middle attacks or injection?
  • Answer aloud and timed: Explain how concurrency works in Golang (goroutines and channels) and how you avoid race conditions.
Thunes Software Engineer candidate reports
04

Technical Interviews

reported

Deep-dive technical interviews including presentation of your assignment, live coding sessions, algorithm tests, and system design discussions.

What to demonstrate

  • Deep-dive technical interviews including presentation of your assignment, live coding sessions, algorithm tests, and system design discussions
  • Depth in Golang (Go)

How to prepare

  • Answer aloud and timed: When designing a transactional system, how do you choose between a relational database like PostgreSQL and a NoSQL database?
  • Answer aloud and timed: How do you implement and manage database transactions to ensure ACID compliance during a multi-step payment flow?
Thunes Software Engineer candidate reports

PracHub editorial advice for the preparation topics above.

01

Going into the loop without having done this.

Proactively manage your application status: Because the hiring process involves multiple stakeholders across different regions, communication can sometimes experience delays. If you do not hear back within a few days of submitting your take-home assignment, send a polite follow-up email to your recruiter.

02

Going into the loop without having done this.

When submitting your take-home assignment via a Git repository, double-check that you have granted access to the correct GitHub usernames provided by the recruiter. A simple permission oversight can stall your application indefinitely.

03

Going into the loop without having done this.

Brush up on financial transaction concepts: You do not need to be a fintech expert, but understanding basic payment flows, ledger systems, double-entry bookkeeping, and transaction states will give you a significant advantage during system design discussions.

04

Going into the loop without having done this.

Optimize for readability over cleverness: During live coding or in your take-home test, prioritize clean, readable, and idiomatic code over overly complex algorithms. Thunes values maintainability and ease of collaboration above all.

Choose a category, try a prompt, then open its approach, worked solution or follow-up when you need it.

13 technical prompts0 include a worked solution

Explain how concurrency works in Golang (goroutines and channels) and how you avoid race conditions.

medium
Language-Specific & Technical Fundamenta

Explain how concurrency works in Golang (goroutines and channels) and how you avoid race conditions.

Approach
  1. Say what the runtime actually does before reasoning about the code.
  2. Name what is shared across threads and what owns each piece of state.
  3. Identify the window where an invariant is briefly untrue.
  4. Distinguish a value from a reference to it, and say which one you handed out.
Follow-up
  • What happens if two callers reach this at the same time?
  • Where could this allocate more than you expect?

When designing a transactional system, how do you choose between a relational database like PostgreSQL and a N

medium
Language-Specific & Technical Fundamenta

When designing a transactional system, how do you choose between a relational database like PostgreSQL and a NoSQL database?

Approach
  1. Say what the runtime actually does before reasoning about the code.
  2. Name what is shared across threads and what owns each piece of state.
  3. Identify the window where an invariant is briefly untrue.
  4. Distinguish a value from a reference to it, and say which one you handed out.
Follow-up
  • What happens if two callers reach this at the same time?
  • Where could this allocate more than you expect?

How do you implement and manage database transactions to ensure ACID compliance during a multi-step payment fl

medium
Language-Specific & Technical Fundamenta

How do you implement and manage database transactions to ensure ACID compliance during a multi-step payment flow?

Approach
  1. Say what the runtime actually does before reasoning about the code.
  2. Name what is shared across threads and what owns each piece of state.
  3. Identify the window where an invariant is briefly untrue.
  4. Distinguish a value from a reference to it, and say which one you handed out.
Follow-up
  • What happens if two callers reach this at the same time?
  • Where could this allocate more than you expect?

What are some common design patterns you use to keep your codebase clean, readable, and maintainable?

medium
Language-Specific & Technical Fundamenta

What are some common design patterns you use to keep your codebase clean, readable, and maintainable?

Approach
  1. Say what the runtime actually does before reasoning about the code.
  2. Name what is shared across threads and what owns each piece of state.
  3. Identify the window where an invariant is briefly untrue.
  4. Distinguish a value from a reference to it, and say which one you handed out.
Follow-up
  • What happens if two callers reach this at the same time?
  • Where could this allocate more than you expect?

Built from the rounds and topics Thunes candidates report.

Small steps. Visible outcomes.0 / 7 completed
ONE WEEK · YOUR PACE

Prepare, practise & reflect

One practical outcome each day. Spend longer where you need it.

0 / 7 done
01Map the Thunes loop
  • Write out the reported sequence: Recruiter Call, Technical Screening, Take-Home Assignment, Technical Interviews.
  • For each round, write one sentence on what it is judging, from the description above, and mark the one you are least ready for.

Deliverable: A one-page map of the 4 reported rounds, with the weakest marked.

02Work Golang (Go)
  • Spend the session on Golang (Go), which Thunes candidates report being tested on.
  • Write one worked example in Golang (Go) and time yourself on it.

Deliverable: One timed worked example in Golang (Go).

03Work API Design (RESTful APIs)
  • Spend the session on API Design (RESTful APIs), which Thunes candidates report being tested on.
  • Write one worked example in API Design (RESTful APIs) and time yourself on it.

Deliverable: One timed worked example in API Design (RESTful APIs).

04Work Event-Driven Architecture
  • Spend the session on Event-Driven Architecture, which Thunes candidates report being tested on.
  • Write one worked example in Event-Driven Architecture and time yourself on it.

Deliverable: One timed worked example in Event-Driven Architecture.

05Answer out loud: API Design & System Architecture
  • Answer aloud, timed: How would you design a highly available mobile wallet solution that supports real-time transactions?
  • Answer aloud, timed: Explain the differences between various HTTP methods (GET, POST, PUT, DELETE, PATCH) and when you would use each in an API design.

Deliverable: Spoken answers to 2 reported API Design & System Architecture question(s), under time.

06Answer out loud: Language-Specific & Technical Fundamentals
  • Answer aloud, timed: Explain how concurrency works in Golang (goroutines and channels) and how you avoid race conditions.
  • Answer aloud, timed: When designing a transactional system, how do you choose between a relational database like PostgreSQL and a NoSQL database?

Deliverable: Spoken answers to 2 reported Language-Specific & Technical Fundamentals question(s), under time.

07Answer out loud: Behavioral & Culture Fit
  • Answer aloud, timed: Describe a time when you had to deliver a complex technical feature under a tight deadline. How did you prioritize your tasks?
  • Answer aloud, timed: How do you handle feedback during code reviews, and how do you deliver constructive feedback to your peers?

Deliverable: Spoken answers to 2 reported Behavioral & Culture Fit question(s), under time.

Expand any day for tasks and deliverables. Your progress is saved on this device.

Behavioural rounds judge the decision you made and what it cost.

Describe a time when you had to deliver a complex technical feature under a tight deadline. How did you priori

medium
Behavioral & Culture Fit

Describe a time when you had to deliver a complex technical feature under a tight deadline. How did you prioritize your tasks?

Approach
  1. Pick a story where you made the decision, not one where you watched it.
  2. State the situation in two sentences and spend the rest on the reasoning.
  3. Give the blast radius: what could have broken, and what you measured.
  4. Name the disagreement and how you resolved it with evidence.
Follow-up
  • What would you do differently if you ran that again?
  • How did you know your change caused the improvement?

How do you handle feedback during code reviews, and how do you deliver constructive feedback to your peers?

medium
Behavioral & Culture Fit

How do you handle feedback during code reviews, and how do you deliver constructive feedback to your peers?

Approach
  1. Pick a story where you made the decision, not one where you watched it.
  2. State the situation in two sentences and spend the rest on the reasoning.
  3. Give the blast radius: what could have broken, and what you measured.
  4. Name the disagreement and how you resolved it with evidence.
Follow-up
  • What would you do differently if you ran that again?
  • How did you know your change caused the improvement?

Why are you interested in the fintech industry, and how do you stay updated with modern aspects of your tech s

medium
Behavioral & Culture Fit

Why are you interested in the fintech industry, and how do you stay updated with modern aspects of your tech stack?

Approach
  1. Pick a story where you made the decision, not one where you watched it.
  2. State the situation in two sentences and spend the rest on the reasoning.
  3. Give the blast radius: what could have broken, and what you measured.
  4. Name the disagreement and how you resolved it with evidence.
Follow-up
  • What would you do differently if you ran that again?
  • How did you know your change caused the improvement?

Share an experience where a production service failed or degraded. How did you triage, resolve, and prevent th

medium
Behavioral & Culture Fit

Share an experience where a production service failed or degraded. How did you triage, resolve, and prevent the issue from happening again?

Approach
  1. Pick a story where you made the decision, not one where you watched it.
  2. State the situation in two sentences and spend the rest on the reasoning.
  3. Give the blast radius: what could have broken, and what you measured.
  4. Name the disagreement and how you resolved it with evidence.
Follow-up
  • What would you do differently if you ran that again?
  • How did you know your change caused the improvement?
  • 01

    Describe a time when you had to deliver a complex technical feature under a tight deadline. How did you prioritize your tasks?

  • 02

    How do you handle feedback during code reviews, and how do you deliver constructive feedback to your peers?

  • 03

    Why are you interested in the fintech industry, and how do you stay updated with modern aspects of your tech stack?

  • 04

    Share an experience where a production service failed or degraded. How did you triage, resolve, and prevent the issue from happening again?

PracHub preparation framework
What is the most challenging part of the Thunes interview process?

Most candidates find the take-home technical assignment to be the most demanding stage. It requires a significant time investment to build a fully functional, production-ready service. Ensuring your code is modular, well-tested, and clearly documented is key to advancing.

Thunes Software Engineer candidate reports
Does Thunes allow remote or hybrid working?

Yes, Thunes supports a flexible and hybrid working policy, allowing you to balance working from their modern offices (such as the Barcelona office near Sagrada Familia) with working from home.

Thunes Software Engineer candidate reports
How long does the entire interview process typically take?

The timeline can vary depending on the location and team availability. It typically takes between 3 to 6 weeks from the initial screen to the final offer, though some candidates have experienced longer timelines. Staying proactive with your recruiter is highly recommended.

Thunes Software Engineer candidate reports
What differentiates a successful candidate from one who gets rejected?

Successful candidates demonstrate strong code ownership, clean architectural practices in their take-home test, and clear communication. Candidates who fail often submit rushed code lacking tests or fail to follow up effectively during the multi-stage process.

Thunes Software Engineer candidate reports
How hard is the Thunes interview?

Candidates most commonly rate Thunes interviews as medium, based on 25 reported interviews.

Thunes Software Engineer candidate reports
What topics does Thunes test in interviews?

Thunes interviews most often cover Golang (Go), API Design (RESTful APIs), Technical Project Management, GTM (Go-to-Market) Planning, and Event-Driven Architecture. The exact emphasis depends on the specific role you apply for.

Thunes Software Engineer candidate reports
Where is Thunes headquartered?

Thunes is headquartered in Singapore, Singapore.

Thunes Software Engineer candidate reports
Sources & methodology 3 sources ↗

Official role evidence, timestamped platform data and clearly labeled preparation advice.