An API (Application Programming Interface) lets systems talk to each other — the backbone of cloud automation and integrations. Most modern APIs are REST and speak JSON.
REST APIs & JSON
How systems talk to each other.
Tap or hover a part to learn more.
URL + verb.
You call an endpoint (a URL) with an HTTP method: GET (read), POST (create), PUT (update), DELETE (remove) — mapping to CRUD over the web.
Check your understanding
1. Which HTTP method creates a resource?
2. What does a 401 status code mean?
Keep learning
The essentials
- REST API — you call an endpoint (URL) with an HTTP method (GET read, POST create, PUT update, DELETE remove).
- Status codes — 200 OK, 401 Unauthorised, 404 Not Found, 500 Server Error tell you what happened.
- JSON — the lightweight text format (
{"name": "Ada"}) APIs use to send structured data. - Authentication — API keys or tokens (e.g. OAuth) prove who's calling.
APIs are how you automate the cloud and integrate tools — call them from Python or PowerShell and parse the JSON response.
