MESEA
  • Welcome to MESEA
  • About MESEA
  • Initial Partnership Offering
  • Initial Dex Offering
  • API Release Note
    • Ver 1.1.1
    • Ver 1.0.0
  • Getting Started
  • Account
    • Premium Account
    • Promo Code
  • MESEA Defi Platform
    • Swap
    • Saving
    • Staking Cards
    • NFTs Lottery
      • Lottery Reward
    • Store
    • Decentralized Affiliate
  • MESEA Marketplace
    • Multichain Marketplace
      • Swap P2P NFT
      • NFT Collection
        • Collection List
        • Create Collection
    • NFT Launchpads
      • Decentralized Affiliate
    • Inventory
    • NFT
      • NFT List Screen
      • NFT Transfer Screen
    • Marketplace Version 3
  • API List
    • MESEA API
      • Ver 1.1
        • Authentic
        • Resources
        • NFT Transfer
        • NFT detail
  • TUTORIAL
    • Connect Wallet
    • Check NFT
    • Transfer NFT
  • Support chain
    • Binance Smart Chain
    • Polygon
    • Fantom
    • Arbitrum
    • Optimism
  • Wallet
    • MetaMask
    • Unawa
  • Tokenomic
    • Tokenmetrics
      • MES Token
  • Link
    • MESEA
    • Twitter
    • Telegram
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 List
  2. MESEA API
  3. Ver 1.1

NFT Transfer

transfernft

Transfer NFTs.

Basic Information

Property
Detail

URL

/api/nft-transfer

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_whales_id

str

Yes

nft_whales_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

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

Sample requests

{
  "contract_address": "0x0000000000000000000000000000000000000000",
  "tokenid": "1",
  "nft_whales_id": "63f7a3f0eba309001de48a1c",
  "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_whales_id": "63f7a3f0eba309001de48a1c",
      "accepted_date": "2022-01-01 00:00:00"
  }
}

Example of response in case of failure(status code 400)

{
  "error": {
    "title": "Error Request",
    "message": "contract_address and blockchain are inconsistent"
  }
}
PreviousResourcesNextNFT detail

Last updated 1 year ago