> For the complete documentation index, see [llms.txt](https://qubic.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://qubic.gitbook.io/docs/api/pass-admin-api/verify-nft-holder.md).

# 驗證 NFT 持有者

```graphql
user(userAddress: $userAddress) {
    address
    id
    tokens(chainId: $tokensChainId2, contractAddresses: $contractAddresses, first: $tokensFirst2, after: $tokensAfter2) {
      nodes {
        id
        owner {
          id
          address
        }
        contract {
          id
          chainId
          address
        }
        tokenId
        metadata {
          imageUrl
          imageThumbnailUrl
          animationUrl
          name
          description
          externalLink
          permalink
          attributes {
            traitType
            value
            displayType
          }
        }
      }
      pageInfo {
        endCursor
      }
      totalCount
    }
  }
```
