> For the complete documentation index, see [llms.txt](https://docs.nftgarden.app/en/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.nftgarden.app/en/api/nft-api/v1.2/transfer.md).

# NFT transfer

## **transfernft** <a href="#transfernft" id="transfernft"></a>

Transfer NFTs.

## Basic Information <a href="#basic-info" id="basic-info"></a>

<table><thead><tr><th width="134">Property</th><th width="226">Detail</th></tr></thead><tbody><tr><td>URL</td><td><code>/api/v1/transfernft</code></td></tr><tr><td>Method</td><td>POST</td></tr></tbody></table>

## **R**equest parameter <a href="#request" id="request"></a>

<table><thead><tr><th width="231">Parameter</th><th width="80">Type</th><th width="104">Required</th><th width="318">Detail</th></tr></thead><tbody><tr><td>contract_address</td><td>str</td><td>yes</td><td>Address of collection(contract)</td></tr><tr><td>token_id</td><td>str</td><td>yes</td><td>Token ID of the target NFT</td></tr><tr><td>nft_gdn_id</td><td>str</td><td>Yes</td><td><code>nft_gdn_id</code> of target NFT</td></tr><tr><td>sender_wallet_address</td><td>str</td><td>Yes</td><td>Transfer source of target NFT</td></tr><tr><td>receiver_wallet_address</td><td>str</td><td>yes</td><td>Destination of the target NFT</td></tr></tbody></table>

## Blockchains that can be specified in the `blockchain` parameter <a href="#parameter" id="parameter"></a>

{% hint style="warning" %}
`solana` and `solana-testnet` are not supported.
{% endhint %}

{% hint style="info" %}
The NFT and `token_id` specified in `nft_gdn_id` must match and the owner must be `sender_wallet_address`.
{% endhint %}

## Sample requests <a href="#sample-request" id="sample-request"></a>

```json
{
  "contract_address": "0x0000000000000000000000000000000000000000",
  "tokenid": "0",
  "nft_gdn_id": "5967ee21-067e-4f89-87de-feb84307c6d9",
  "sender_wallet_address": "0x2222222222222222222222222222222222222222",
  "receiver_wallet_address": "0x1111111111111111111111111111111111111111"
}
```

## Example of successful response <a href="#response" id="response"></a>

```json
{
  "requests": {
      "contract_address": "0x0000000000000000000000000000000000000000",
      "receiver_wallet_address": "0x1111111111111111111111111111111111111111",
      "sender_wallet_address": "0x2222222222222222222222222222222222222222"
  },
  "response": {
      "transaction_gdn_id": "870f7312-55ec-4fdc-8dac-f555d8fbd225",
      "accepted_date": "2022-09-01 06:00:00"
  }
}
```

## Example of response in case of failure(status code 400) <a href="#error" id="error"></a>

```json
{
  "error": {
    "title": "Bad Request",
    "message": "contract_address and blockchain are inconsistent"
  }
}
```
