JSON structure vocabulary

  • data — the actual payload; meta — metadata (pagination, totals); errors — error details
  • null — intentional absence of a value (different from a missing key)
  • nested object — object inside another: data.order
  • response envelope — wrapper structure: {"status": "ok", "data": {...}}
  • retry_after — seconds to wait before retrying after a 429 error

Question 0 of 5

Read this API response and answer: what does the meta object represent?

{"data": [...], "meta": {"total": 245, "page": 3, "per_page": 20}, "links": {"next": "/api/users?page=4"}}