Manuals / API Basics for Non-Developers / Chapter 1
Start · beginner · ~25 min · Chapter 1 of 3
HTTP in plain words
Client asks (request), server answers (response). Methods: GET read, POST create, PATCH update, DELETE remove.
URL + method + body
GET usually has no body. POST/PATCH often send JSON. Responses are often JSON too.
URL + method + bodyDrag stickies · tap for tips
Quick check
GET is mainly for…
Do this now
Open any public API docs and find one GET endpoint.
Was this step clear?
Chapter learning outcomes
Clear these before you leave