Underdog Protocol
  • API Documentation
  • Quickstart
  • Guides
    • Postman
    • Endpoints
    • Authentication
    • Pagination
    • Errors
    • Webhooks
    • Architecture
  • Resources
    • Projects
      • Transferable Projects
      • Non-Transferable Projects
      • NFTs
        • List all NFTs
        • Search NFTs
        • Create an NFT
        • Retrieve an NFT
        • Update an NFT
        • Generate Claim Link
        • Revoke an NFT
        • Burn an NFT
      • Methods
        • List all Projects
        • Create a Project
        • Retrieve a Project
        • Update a Project
        • Retrieve Project Stats
    • NFTs
      • Retrieve an NFT
      • Generate Claim Transaction
    • Orgs
      • List all Orgs
    • Transactions
      • List all Transactions
      • Retrieve a Transaction
    • Webhooks
      • List all Webhooks
      • Create a Webhook
      • Delete a Webhook
    • V1
      • Collections
        • List all Collections
        • Create a Collection
        • Retrieve a Collection
      • NFTs
        • List all NFTs
        • Create an NFT
        • Retrieve an NFT
        • Update an NFT
      • Managed NFTs
        • Claim
        • Revoke
  • Examples
    • Zapier Integrations
      • Zapier + Viral Loops
      • Zapier + Github + OpenAI
      • Zapier + Github
      • Zapier + Mailchimp
      • Zapier + Shopify
      • Zapier + Calendly
      • Zapier + Hubspot
      • Zapier + Typeform
    • Underdog with Airtable
      • Create a Project
      • Create NFT on Form Submission
      • Send a Claim Link
      • Updating NFTs
    • Web3 Blog
    • Mint NFTs on iPhone
  • Use Cases
    • Solana Mobile
    • Parcl
Powered by GitBook
On this page
  • Create a Transferable Project
  • API Reference
  • Mint a Transferable NFT
  • API Reference
  1. Resources
  2. Projects

Transferable Projects

PreviousProjectsNextNon-Transferable Projects

Last updated 2 years ago

For Transferable Projects, the :transferable path param is set to t

This guide will walk through the process of setting up a Transferable Project and minting NFTs that are part of the Project.

Create a Transferable Project

Besides passing in the Project's name and image, you'll need to set the transferable to true in the request body.

Example Request Body
{
    "name": "Transferable Project",
    "description": "Description for your transferable project",
    "image": "https://hatrabbits.com/wp-content/uploads/2017/01/random-word-1.jpg",
    "transferable": true
}

API Reference

Mint a Transferable NFT

Besides setting the metadata like name, description, image, and attributes, you can also specify a receiver for your NFT.

When the receiver is set, the NFT will be minted directly to the receiver's address.

If you don't set a receiver, the NFT will be minted to the wallet associated to the API Key in the request.

API Reference

Create a Project
Create an NFT