# ownerHasNFT

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

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

And here is the example output:

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