API Basics
Start by learning core concepts:
- HTTP Methods: GET (retrieve), POST (create), PUT (update), DELETE.
- Status Codes: 200 OK, 404 Not Found, 500 Internal Server Error.
- Request/Response: Headers, Body (JSON/XML), Query Params.
Practice:
- Read Postman API Testing Guide.
- Use free public API: JSONPlaceholder – no auth needed.
Send a manual GET to https://jsonplaceholder.typicode.com/posts/1 using browser or curl:
curl -X GET https://jsonplaceholder.typicode.com/posts/1
Observe JSON response with id, title, body.