### Offset-based Pagination Example Source: https://github.com/nilbuild/system-design-101/blob/main/data/guides/how-do-we-perform-pagination-in-api-design.md Use offset and limit parameters to define the starting point and number of records. Suitable for smaller datasets where performance with large offsets is not a concern. ```HTTP GET /orders?offset=0&limit=3 ``` -------------------------------- ### HTTP GET Request Example Source: https://github.com/nilbuild/system-design-101/blob/main/data/guides/what-happens-when-you-type-a-url-into-your-browser.md A basic HTTP GET request sent by the browser to the server to fetch a resource. It includes the method, path, HTTP version, and host. ```http GET /phone HTTP/1.1 Host: example.com ``` -------------------------------- ### HTTP 200 OK Response Example Source: https://github.com/nilbuild/system-design-101/blob/main/data/guides/what-happens-when-you-type-a-url-into-your-browser.md An example of a successful HTTP response from the server. It includes the status line, headers, and a simple HTML body. ```http HTTP/1.1 200 OK Date: Sun, 30 Jan 2022 00:01:01 GMT Server: Apache Content-Type: text/html; charset=utf-8 Hello world ```