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

# useRefereeHistory

> Hook to retrieve paginated referee history with date filtering.

Retrieve history of a referee.

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

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