DEV Community

Cover image for What is a REST API: Four Words That Power the Internet
Muditha Jayaweera
Muditha Jayaweera

Posted on

What is a REST API: Four Words That Power the Internet

The Menu You Never Questioned

You’ve probably walked into a restaurant hundreds of times without ever thinking about how it actually works.

You sit down. A waiter appears. You point at something on the menu. Food arrives.

Simple. Comfortable. Familiar.

But what if I told you that this exact same system — this quiet, organized dance between you, the waiter, and the kitchen — is how almost every app on your phone communicates behind the scenes?

Welcome to the world of REST APIs.

The Problem With No Rules

Imagine a world with no menus.

Every customer walks straight into the kitchen, shouts their order in whatever language they feel like, and expects the chef to understand. One person draws a picture of a burger. Another hums a description of pasta. Someone else just points aggressively at the stove.

Chaos.

This is what software communication looked like before standards were put in place. Every system had its own custom way of talking. If you wanted two systems to work together, you had to learn a brand new language every single time.

It was exhausting. It didn’t scale. Something had to change.

So the industry did what every good restaurant figured out centuries ago — they created a menu.

That menu is called REST.

The Waiter Who Knows the Rules

REST — which stands for Representational State Transfer — is simply an agreed-upon set of rules for how systems should talk to each other over the internet.

And like any good restaurant, it works because everyone plays their role.

You are the client — the frontend, the app on your phone, the website in your browser. You know what you want, but you don’t go barging into the kitchen to get it yourself.

The kitchen is the backend — where the real work happens, where the data lives, where requests get processed. You don’t need to see it or understand it. You just need your order filled.

And in between? The waiter. The API. The one who carries your request in one direction and your answer in the other, fluently, without confusion, every single time.

But here’s what makes a REST API special — the waiter doesn’t just take any order in any format. There’s a structure. A language. A menu.

Learning the Menu

In a restaurant, the menu tells you what’s available and how to ask for it. In a REST API, that menu is built from four simple actions — four words that cover almost everything you’d ever need to do with data.

GET“Bring me something.” You want to see your profile. You want a list of products. You want today’s news feed. GET goes and fetches it for you.

POST“Add something new.” You’re creating an account. You’re submitting a form. You’re posting a photo. POST takes what you’ve prepared and delivers it to the kitchen to be made.

PUT or PATCH“Change something that’s already there.” You want to update your username. You need to edit a booking. Something needs to be different from what it was. PUT and PATCH walk back to the kitchen and ask the chef to adjust the dish.

DELETE“Take it away.” You’re removing a post. Cancelling an account. Clearing out old data. DELETE sends back the plate and makes sure it doesn’t come back.

Four actions. Almost infinite possibilities.

The Address of Every Order

But knowing what to ask for is only half the story. You also need to know where to ask.

In a REST API, every resource — every piece of data — has its own address, called an endpoint. Think of it like a table number, or a specific item on the menu.

Want a list of all users? That’s GET /users. Want to add a new one? POST /users. Want just one specific person? GET /users/1.

Clean. Predictable. Once you learn the pattern, you can walk into any REST API in the world and feel right at home — because the menu always looks the same.

A Morning on Your Phone

Let’s make this real.

You wake up and open your favorite app. You tap on your profile picture in the corner. Without you realizing it, your phone quietly whispers a GET /profile request to the server. The API receives it, passes it to the backend, the backend retrieves your data, and within a second your name, your photo, your details — all of it appears on screen.

You didn’t write any code. You didn’t configure anything. You just tapped.

But underneath that tap, REST did its job — organized, fast, and completely invisible.

Why the Whole World Agreed on This

REST didn’t become the dominant standard by accident. It earned its place.

It’s simple — the concepts are easy to grasp, and the structure is easy to follow. It’s standardized — a developer in Sri Lanka and a developer in San Francisco can look at the same REST API and immediately understand what it does. It’s scalable — the same structure that powers a small startup can handle millions of users at a time. And it’s flexible — the frontend and backend don’t need to know each other’s secrets. They just need to agree on the menu.

Separation. Clarity. Order.

The Door This Opens

Once you understand REST, something quietly shifts in how you see the digital world.

Every app that loads your feed, every website that takes your order, every platform that remembers your preferences — they’re all just waiters carrying menus, running back and forth between you and a kitchen you’ll never see.

And once you’re comfortable with that idea, the next doors start to appear. GraphQL — a different kind of menu, one where you get to choose exactly what goes on your plate. WebSockets — where the waiter doesn’t wait for you to ask, but brings you updates the moment they’re ready. Distributed systems — where instead of one kitchen, there are hundreds, spread across the world.

But all of it starts here.

With a menu. A waiter. And the quiet confidence of knowing exactly how to place your order.

Top comments (0)