How Tinder built the API Gateway ?— Insightful Notes

Mahesh Saini
Javarevisited
Published in
7 min readOct 27, 2023

--

Tinder API Gateway (TAG) is one of the critical frameworks at Tinder that solves the need to expose public APIs and enforce strict authorization and security rules. It’s engineered to meet Tinder’s custom need to fit perfectly in its current cloud infrastructure and can be scaled as required and maintained without any external support.

What we will cover here…

  1. Introduction
  2. Challenges Before TAG
  3. Existing API Gateway Solutions
  4. Let’s Explore TAG
  5. A Deeper Look Inside TAG
  6. API Gateway at Tinder Today

Introduction

  • They have more than 500 microservices at Tinder, which talk to each other for different data needs using a service mesh under the hood. All external-facing APIs are hosted on TAG.
  • They needed a gateway solution that could centralize all these services, giving them more control from maintenance to deployment.
  • The custom gateway also helps ensure that…

--

--