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

# useCollectionDetails

> The useCollectionDetails hook retrieves information about a specific collection address.

```typescript theme={null}
import { useCollectionDetails } from "@0xsequence/marketplace-sdk/react";

## Into your React component:

const { data: collectionDetailsData } = useCollectionDetails({
  chainId: 421614,
  collectionAddress: "0x36631c1e690714192614364ae9629850b546d194"
});
console.log(collectionDetailsData);
```

<ResponseField name="useCollectionDetails details">
  <ResponseField name="* params" />

  <Expandable>
    ```typescript theme={null}
    interface UseCollectionDetailsArgs {
      collectionAddress: string;
      chainId: number;
    }
    ```
  </Expandable>

  <ResponseField name="* return properties" />

  <Expandable>
    <ParamField path="data" type="Collection">
      Contains the collection data.
    </ParamField>

    <ParamField path="isLoading" type="boolean">
      Indicates whether the data is currently loading.
    </ParamField>
  </Expandable>
</ResponseField>
