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

# useBalanceOfCollectible

> Hook to fetch the balance of a specific collectible for a user

## Parameters

| Name   | Type | Description                            |
| ------ | ---- | -------------------------------------- |
| `args` |      | The arguments for fetching the balance |

## Returns

Query result containing the balance data

## Example

```typescript theme={null}
const { data, isLoading, error } = useBalanceOfCollectible({
  collectionAddress: "0x123...",
  collectableId: "1",
  userAddress: "0x456...",
  chainId: 1,
  query: {
    enabled: true,
    refetchInterval: 10000,
  },
});
```
