REST API docs vocabulary

  • GET/POST/PUT/PATCH/DELETE — read / create / replace / partial-update / delete
  • Path parameter {id} — variable in the URL path; query parameter — after ?
  • Bearer token — Authorization: Bearer <token> header on every request
  • Rate limit — max requests per time window; 429 = too many requests
  • Paginated list — data array + meta with total/page/per_page

Question 0 of 5

A REST API doc entry reads: GET /api/v2/users/{id}. How would you describe this endpoint in plain English?