# NFTs

On this page, we'll dive into the different NFT endpoints you can use to manage NFTs programmatically. We'll look at how to query, create, and update NFTs.

Related NFTs can be part of a Collection. For example, a community can create a Collection and NFTs in that Collection can be Membership NFTs.

## The NFT Model

The NFT model contains all the information about your NFT, such as their mint address, name, and image.

| Property       | Description                                            | Type   |
| -------------- | ------------------------------------------------------ | ------ |
| `mintAddress`  | The mint address of the NFT                            | string |
| `name`         | The on-chain name of the NFT                           | string |
| `description`  | Description of the NFT                                 | string |
| `image`        | Image for the NFT                                      | string |
| `ownerAddress` | The wallet address of the owner of the NFT             | string |
| `attributes`   | Object with traits and values  of the NFT's attributes | object |

<table data-card-size="large" data-view="cards"><thead><tr><th></th><th></th><th></th><th data-hidden data-card-target data-type="content-ref"></th></tr></thead><tbody><tr><td><strong>List all NFTs</strong></td><td></td><td><a href="nfts/list-all-nfts">GET -></a></td><td><a href="nfts/list-all-nfts">list-all-nfts</a></td></tr><tr><td><strong>Create an NFT</strong></td><td></td><td><a href="nfts/create-an-nft">POST -></a></td><td><a href="nfts/create-an-nft">create-an-nft</a></td></tr><tr><td><strong>Retrieve an NFT</strong></td><td></td><td><a href="nfts/retrieve-an-nft">GET -> </a></td><td><a href="nfts/retrieve-an-nft">retrieve-an-nft</a></td></tr><tr><td><strong>Update an NFT</strong></td><td></td><td><a href="nfts/update-an-nft">PUT -></a></td><td><a href="nfts/update-an-nft">update-an-nft</a></td></tr></tbody></table>
