What is an API? (Grandparent Version 
)
Imagine you are sitting in a restaurant.
You don’t go inside the kitchen to make your food.
You tell the waiter what you want, and the waiter brings your food to you.
The waiter is an API.
-
You = User
-
Kitchen = Server / Database
-
Waiter = API
So…
API = A messenger that takes your request, talks to the system, and brings you the response.
Why Do We Need APIs?
Without APIs, apps would have to directly touch each other’s databases (which is unsafe and messy).
APIs:
-
Keep systems secure
-
Make apps talk to each other
-
Save time for developers
-
Power almost every modern app
When you log in, send a message, place an order, or check your balance — you are using APIs.
Simple Real-Life Example
When you order food on Swiggy/Zomato:
-
You choose food (request)
-
App sends request to restaurant (API)
-
Restaurant confirms order (server)
-
Food is delivered (response)
That entire communication works using APIs.
Trying Your First API Using Postman
Let’s make your first API call.
Step 1
Open Postman
Step 2
Paste this in the request URL:
https://api.agify.io/?name=piyu
Step 3
Click Send
Step 4
You’ll get a response like:
{
"name": "piyu",
"age": 23,
"count": 1200
}
Congratulations — you just used an API!
What I Learned
-
APIs are simple messengers, not scary technical monsters
-
Every app we use runs on APIs
-
Postman makes learning APIs super easy and fun
This small experiment helped me understand how powerful and beginner-friendly APIs can be.
Final Thoughts
If you can explain APIs to your grandparents, you truly understand them.
And Postman makes this learning journey simple for everyone.
If you’re a beginner, try this once — you’ll love APIs forever.