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

# NFT Marketplaces & Launchpads

> Add fiat and cross-chain crypto payments to your platform

<Accordion title="Additional services offered to marketplaces and launchpads">
  Crossmint offers additional services to marketplaces and launchpads,
  including:

  * Custom branding and email receipts

  * Dedicated Slack channel with Crossmint's support team

  * Custom SLAs

  * APIs to register new collections programmatically

  * Increased purchase limits

  * Cart mode and ability to sweep the floor

  ...and more
</Accordion>

<Tabs>
  <Tab title="Marketplaces">
    ### Integrating Crossmint into a marketplace

    Integrating Crossmint into a marketplace can be as simple as
    adding five lines of code, depending on the level of customization required.

    The following snippet would be sufficient to render a button that enables
    the purchase of one of your listings with credit card.

    <CodeGroup>
      ```jsx EVM theme={null}
      <CrossmintProvider apiKey="_YOUR_CLIENT_API_KEY_">
        <CrossmintHostedCheckout
          lineItems={{
              tokenLocator: "ethereum:0xbC…307e:7777",
              callData: {
                totalPrice: "0.1"
              }
            }}
        />
      </CrossmintProvider>
      ```

      ```jsx Solana theme={null}
      <CrossmintProvider apiKey="_YOUR_CLIENT_API_KEY_">
        <CrossmintHostedCheckout
          lineItems={{
              tokenLocator: "solana:4oDd…x6NC",
              callData: {
                totalPrice: "0.1",
                buyerCreatorRoyaltyPercent: 100
              }
            }}
        />
      </CrossmintProvider>
      ```
    </CodeGroup>

    <br />

    <Note>[Contact sales](https://www.crossmint.com/contact/sales) to get started.</Note>
    <Tip>If you are building a new marketplace, use one of the supported contracts for a faster integration. If you are looking for help building a marketplace, [contact us](https://www.crossmint.com/contact/sales) and the Crossmint team will introduce you to the right partner.</Tip>

    ### FAQs

    <AccordionGroup>
      <Accordion title="What marketplaces are supported">
        <Snippet file="supported-marketplaces.mdx" />
      </Accordion>

      <Accordion title="Supported contracts">
        Crossmint supports a wide range of contracts across chains, including:

        | Blockchain | Contract                                                                                    |
        | :--------- | :------------------------------------------------------------------------------------------ |
        | EVM        | Rarible, Seaport, OpenSea, Zora, LooksRare, 0x, Foundation, CoinbaseNFT, Sudoswap, Manifold |
        | Solana     | Auction House, Magic Eden API, Hyperspace, Exchange.art                                     |

        <Note>Custom integrations available only for enterprise clients.</Note>
      </Accordion>

      <Accordion title="Where can I test it?">
        You can see a live implementation of the payment button on [Tensor](https://tensor.trade/).
      </Accordion>

      <Accordion title="What is the maximum transaction limit?">
        The default transaction limit is 7,000 USD. If you need a higher limit, [contact us](https://www.crossmint.com/contact/sales)
      </Accordion>
    </AccordionGroup>
  </Tab>

  <Tab title="Launchpads">
    ### Integrating Crossmint into a launchpad

    The integration is identical to that of the standard digital asset checkout. However, Crossmint offers additional services to improve the creator experience, including the ability to register collections via API.

    <br />

    <Note>[Contact sales](https://www.crossmint.com/contact/sales) to get started.</Note>

    ### FAQs

    <Accordion title="Where can I test it?">
      Crossmint powers most major launchpads across chains. You can see in action on [Manifold](https://app.manifold.xyz/c/sleeping-potato) and [Highlight](https://highlight.xyz/mint/6525a4b606bc6fa5b8acdcfa).
    </Accordion>

    <Accordion title="How does creator and collection verification work?">
      For primary sales, Crossmint requires creators to do <Tooltip tip="Takes 2 minutes and 30 seconds on average">light KYC</Tooltip> and confirm their project meets Crossmint's [content policy](https://drive.google.com/file/d/1kXv5gX7C8xHJFDAnCQTNUmXrDP05YYk1/view). There are multiple options to achieve this:

      * You can conduct project verification yourself.
      * You can send creators to register their collection at Crossmint.com and share their collectionID with you, so you can pass it to the digital asset checkout.
      * (Coming soon) You can use Crossmint's collection verification SDK to verify creators directly on your site.
    </Accordion>
  </Tab>
</Tabs>
