Projects

Projects are the containers for NFTs shared with you, your community, and your product.

On this page, we'll dive into the different Project endpoints you can use to manage Projects programmatically.

Projects represent a group of related NFTs. A Project is itself an NFT. For example, a Project can be a group of NFTs where each NFT is a membership pass.

There are two types of Projects:

We'll walk through the different Project types and how the NFTs in each Project type are different.

The Project Model

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

Project Types

The Underdog API supports two types of Projects that affect how the NFTs in the Project are minted and the transferability of the NFTs in the Project.

Transferable Projects t

NFTs in a Transferable Project are minted directly to a wallet and can be transfered freely the the owner of the NFT.

Non-Transferable Projects n

NFTs in a Non-Transferable Project are lazily minted. Only when the NFT is claimed is it minted and the claimer cannot transfer the NFT.

NFTs

The Projects endpoint includes endpoints to create, update, and manage the Project's NFTs.

The :transferable param is set to either t for a Transferable Project or n for a Non-Transferable Project. The :projectId param is set to the Project's ID.

Last updated