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

# useMarketplaceConfig

> The useMarketplaceConfig hook retrieves your Marketplace's configuration, including collections, social links, title, and other settings from Builder.

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

## Into your React component:

const data = useMarketplaceConfig();
```

<ResponseField name="useMarketplaceConfig">
  <ResponseField name="* return properties" />

  <Expandable>
    <ParamField path="publisherId" type="string">
      Unique identifier of the marketplace publisher.
    </ParamField>

    <ParamField path="title" type="string">
      The title of the marketplace.
    </ParamField>

    <ParamField path="shortDescription" type="string">
      A brief description of the marketplace.
    </ParamField>

    <ParamField path="socials" type="MarketplaceSocials">
      Social media links associated with the marketplace.
    </ParamField>

    <ParamField path="faviconUrl" type="string">
      URL of the marketplace's favicon.
    </ParamField>

    <ParamField path="landingBannerUrl" type="string">
      URL of the Marketplace banner for landing page
    </ParamField>

    <ParamField path="collections" type="MarketplaceCollection[]">
      Array of collections from the marketplace.
    </ParamField>

    <ParamField path="walletOptions" type="MarketplaceWalletOptions">
      Configuration options for wallet integrations.
    </ParamField>

    <ParamField path="landingPageLayout" type="string">
      Layout configuration for the marketplace's landing page.
    </ParamField>

    <ParamField path="logoUrl" type="string">
      URL of the marketplace's logo.
    </ParamField>

    <ParamField path="bannerUrl" type="string">
      URL of the marketplace's banner.
    </ParamField>

    <ParamField path="fontUrl" type="string | undefined">
      URL of the custom font used in the marketplace.
    </ParamField>

    <ParamField path="ogImage" type="string | undefined">
      URL of the ogImage
    </ParamField>

    <ParamField path="cssString" type="string">
      Custom CSS styles for the marketplace.
    </ParamField>

    <ParamField path="manifestUrl" type="string">
      URL of the marketplace manifest file.
    </ParamField>
  </Expandable>
</ResponseField>
