> ## 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.

# useLazyQuery

> Hook for on-demand fetching of public API data, triggered manually rather than on mount.

Like [useQuery](/sdks/hooks/api/use-query), but returns a `trigger` to fetch data.

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

### Example

```ts theme={null}
const { data, trigger } = useLazyQuery<API.Symbol[]>("/v1/public/info");
```
