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

# Set up a Claims Page

> Deploy a website for your users to come claim your NFTs

The [minting guide](/minting/nfts/integrate/mint-tokens) showed you how to create NFTs.
In this guide you will learn how to set up a website where users can claim
those NFTs into their wallets, for free.

## Key Characteristics

* **Easy to set up**: no coding required.
* **No wallet required**: users can claim an NFT to their existing wallet, or,
  if they didn't have one, enter an email address and have a wallet created on
  the fly.
* **Bot protection**: comes with signature protected mint function, reCAPTCHA,
  Cloudflare rate-limiting, and optional password protection.
* **Blockchain-less UX**: users don't need to sign any transaction, nor pay gas
  fees.

<Note>
  If you want users to pay the gas fees when claiming a token, you can do so by [enabling
  payments](/minting/nfts/integrate/list-for-sale) for your collection with a price of 0.
</Note>

## Guide

<Accordion title="Video Walkthrough">
  <Frame type="simple">
    <iframe src="https://www.youtube.com/embed/nMyxBSEJLDU" width="700px" height="400px" />
  </Frame>
</Accordion>

1. [Create an NFT collection](/minting/nfts/integrate/create-collections) and navigate
   to it in the console.
2. Upload NFT "templates" for all the NFTs you wish to list for claiming. You
   can do so from the "NFTs" tab in the console, or by using
   [the API](/api-reference/minting/template/create-template).
3. Navigate to the `Claims` entry on the left navbar in the collections page.
   Follow the wizard to deploy a claims page. It is recommended to set a
   password, so that only those who know it can claim.
4. (Optional) Customize the branding of your page.

<Frame type="simple">
  <img src="https://mintcdn.com/crossmint-wallets-docs-2-5/iOoz1opM3U5Qaefv/images/minting/custom-claims-page.jpg?fit=max&auto=format&n=iOoz1opM3U5Qaefv&q=85&s=f53784a900f2b2b52e2809a47f835d1e" alt="Screenshot showing how to customize the branding of a claims page" width="3000" height="1383" data-path="images/minting/custom-claims-page.jpg" />
</Frame>

5. (Production only) [Verify your account and collection](/introduction/platform/account-verification). Not required in staging.
6. Share the url or QR code with your users.

### FAQs

<AccordionGroup>
  <Accordion title="How can I track who has claimed an NFT?">
    There are multiple ways:

    * The claims page shows the number of items claimed

    * By setting up [webhooks](/minting/nfts/integrate/webhooks-and-status-apis) to listen to mint events

    * (Coming soon) Using the Crossmint console
  </Accordion>

  <Accordion title="Can I gate my claims page?">
    To prevent unwanted users from minting your NFTs, you can require a password
    for the claim. This can be activated from the Claims page on the console.

    <Frame type="simple">
      <img src="https://mintcdn.com/crossmint-wallets-docs-2-5/iOoz1opM3U5Qaefv/images/minting/password-required.jpg?fit=max&auto=format&n=iOoz1opM3U5Qaefv&q=85&s=7e4f140a0cc166fab66c8a803b785386" alt="claims page password condition screenshot" width="2000" height="725" data-path="images/minting/password-required.jpg" />
    </Frame>
  </Accordion>
</AccordionGroup>
