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

# useRefereeInfo

> Hook to retrieve paginated referee information with date filtering.

Retrieve referee info.

* [Tech docs](/sdks/tech-doc/modules/orderly_network_hooks#userefereeinfo)

```ts theme={null}
const [refereeInfo, { total, isLoading, refresh, loadMore }] = useRefereeInfo({
  size: 10, // Number of items per page
  startDate: "2023-04-01", // Start date in YYYY-MM-DD format
  endDate: "2023-04-30", // End date in YYYY-MM-DD format
  initialSize: 1 // Initially load 1 page of data
});
```
