> For the complete documentation index, see [llms.txt](https://docs.manifold.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.manifold.xyz/manifold-for-developers/resources/widgets/connect-widget/data-client/nft-information-retrieval/ownerhasnft.md).

# ownerHasNFT

This gets whether the currently authenticated user owns the NFT or not. Supports [filters and attribute filters](/manifold-for-developers/resources/widgets/connect-widget/data-client/nft-information-retrieval.md).

```javascript
client.ownerHasNFT({
  filters: [
    {
      contractAddress: '0x9619dabdc2eb3679943b51afbc134dec31b74fe8',
      tokenId: 9576
    }
  ]
})
```

And here is the example output:

```javascript
{
  result: true
}
```
