> ## Documentation Index
> Fetch the complete documentation index at: https://docs.hfrsite.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get all the pages

Things you can do:

* Get all the page information
* query by

<ParamField query="page" type="integer" default="1" />

<ParamField query="limit" type="integer" default="50" />

<RequestExample>
  ```bash cURL
  curl -X 'GET' \
    'https://api.hfrsite.com/pages?page=1&limit=50' \
    -H 'accept: application/json' \
    -H 'Content-Type: application/json' \
  ```

  ```javascript JavaScript
  await axios.get(url, {
    params: {
      page: 1,
      limit: 50,
    },
  });
  ```
</RequestExample>
