Chapter 07 — APIs at work2 min read

What’s next

You made it.

Seven chapters. From "what's JSON?" to evaluating APIs, testing endpoints, and having real conversations with your engineering team. Let's take a second to see how far you've come.


Everything you've learned

ChapterWhat you learnedKey concept
1. JSONHow to read the data format behind every APIObjects, arrays, key-value pairs
2. API requestsHow apps talk to servers: URLs, methods, headers, bodiesGET, POST, PUT, DELETE
3. API designHow APIs are structured and why REST conventions existResources, endpoints, relationships
4. AuthenticationWhy some requests get rejected and how credentials workAPI keys, OAuth, Bearer tokens
5. DocumentationHow to navigate real API docs and find what you needEndpoints, parameters, response schemas
6. WebhooksHow external services notify your app when something happensEvents, payloads, signatures
7. APIs at workHow to evaluate, test, and talk about APIs in your jobDX, Postman, rate limits, integration patterns

That's not a small list. Six months ago, most of this was a foreign language. Now you have a mental model for every piece.


What to do tomorrow

This course gave you the concepts. The next step is to use them. Here are a few things you can do right away:

Open Postman and send your first real request. Download it (it's free), create a GET request to https://dummyjson.com/products/1, and hit Send. You'll get back a JSON object with a product's name, price, description, and rating. Same tool your engineers use every day, same kind of response you've been reading throughout this course.

Read a real API's documentation. Pick one your team actually uses (Stripe, Twilio, Intercom, whatever). Open the docs, find an endpoint, and try to understand what it does: what method, what parameters, what response. You'll be surprised how much you can follow now.

Ask your engineers one good question. Next time an integration comes up, try one of the questions from the glossary: "What auth does it use?", "Are there rate limits?", "Do they support webhooks?" Watch how the conversation changes when you speak the same language.

Look at your product with API eyes. Does your product expose a public API? If so, try the DX checklist: sign up as a new developer, read the docs, send a test request. You'll see your product from a completely different angle.


The next time you're in a meeting and someone mentions webhooks, pagination, or OAuth, you won't just nod. You'll know what it means, why it matters, and what to ask next.

Thanks for taking this course. If it helped you, share it with a colleague who's in the same spot you were seven chapters ago.

Share on LinkedIn · Share on X