NFT Garden Docs
HomepageGitHubLanguageSign up for free
  • Welcome to NFT Garden Docs
  • Getting started
  • Web release note
  • API release note
    • Ver 1.2
    • Ver 1.1
    • Ver 1.0
  • Supported Blockchains
  • Pricing
  • EUs consumption
  • Web platform
    • Dashboard
    • Contract
      • Contract list screen
      • Create contract screen
    • NFT
      • NFT list screen
      • NFT minting screen
      • NFT transfer screen
    • API key
      • API keys
      • Generate API key
    • Webhook
      • Webhook settings
    • Account
      • Account
  • API Minting
    • NFT API
      • Ver 1.2.2
        • Auth
        • Resources
        • NFT minting
        • NFT transfer
        • NFT granted(mint + transfer)
        • Get the NFT list
        • Get NFT details
        • NFT Garden NFT determination
        • Create contract
        • Get Contract details
        • Wallet Address Generation
        • API rate limit
  • Tutorial
    • Connect wallet
    • Create contract
    • Mint NFT
    • Check NFT
    • Transfer NFT
  • Links
    • NFT Garden
    • GitHub
    • Blog
    • Contact
Powered by GitBook
On this page
  • transfernft
  • Basic Information
  • Request parameter
  • Blockchains that can be specified in the blockchain parameter
  • Sample requests
  • Example of successful response
  • Example of response in case of failure(status code 400)
  1. API Minting
  2. NFT API
  3. Ver 1.2.2

NFT transfer

transfernft

Transfer NFTs.

Basic Information

Property
Detail

URL

/api/v1/transfernft

Method

POST

Request parameter

Parameter
Type
Required
Detail

contract_address

str

yes

Address of collection(contract)

token_id

str

yes

Token ID of the target NFT

nft_gdn_id

str

Yes

nft_gdn_id of target NFT

sender_wallet_address

str

Yes

Transfer source of target NFT

receiver_wallet_address

str

yes

Destination of the target NFT

Blockchains that can be specified in the blockchain parameter

solana and solana-testnet are not supported.

The NFT and token_id specified in nft_gdn_id must match and the owner must be sender_wallet_address.

Sample requests

{
  "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

{
  "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)

{
  "error": {
    "title": "Bad Request",
    "message": "contract_address and blockchain are inconsistent"
  }
}
PreviousNFT mintingNextNFT granted(mint + transfer)

Last updated 1 year ago