# Transferable Projects

{% hint style="warning" %}
For Transferable Projects, the `:transferable` path param is set to t
{% endhint %}

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

## Create a Transferable Project

<figure><img src="https://1812349639-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FMfCqNbNtOQjchD3WfXFA%2Fuploads%2FzFwu1QK0dGsjFgOhTBH8%2FScreen%20Shot%202023-02-12%20at%206.05.33%20PM.png?alt=media&#x26;token=eb48b83d-4266-44e2-9d65-217c26a43a5c" alt=""><figcaption></figcaption></figure>

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

{% code title="Example Request Body" %}

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

{% endcode %}

### API Reference

{% content-ref url="methods/create-a-project" %}
[create-a-project](https://docs.underdogprotocol.com/resources/projects/methods/create-a-project)
{% endcontent-ref %}

## Mint a Transferable NFT

<figure><img src="https://1812349639-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FMfCqNbNtOQjchD3WfXFA%2Fuploads%2FzhkMXpFBx00XcbjR22dU%2FScreen%20Shot%202023-02-12%20at%206.08.28%20PM.png?alt=media&#x26;token=3bd70bba-ca80-4d92-a91c-255e9faa6d7e" alt=""><figcaption></figcaption></figure>

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

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

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

### API Reference

{% content-ref url="nfts/create-an-nft" %}
[create-an-nft](https://docs.underdogprotocol.com/resources/projects/nfts/create-an-nft)
{% endcontent-ref %}
