Skip to main content

Transfer an NFT

Path Parameters
  • walletId string required

    Unique wallet identifier

Request Body required
  • chain string required

    Possible values: [polygon]

    Default value: polygon

  • tokenAddress string required

    Token smart contract address

  • tokenId string required

    Unique on chain NFT identifier

  • destinationAddress string required

    Account address where the NFT will be sent. For example, your Metamask wallet address if you wish to send it to yourself

Responses

Successful operation


Schema
  • id string

    Unique wallet identifier.

  • chain string

    Possible values: [polygon]

    Default value: polygon

  • tokenAddress string

    Token smart contract address

  • tokenId string

    Unique on chain NFT identifier

  • destinationAddress string

    Account address where the NFT will be sent. For example, your Metamask wallet address if you wish to send it to yourself

  • walletId string

    Unique wallet identifier

  • transactionHash string

    NFT transfer transaction hash which is a unique string of characters that is given to every transaction that is added to the blockchain

  • status string
  • createdOn date-time

    The date and time when the object was created.

POST /wallets/:walletId/transactions/transferNft

Authorization

type: apiKeyname: x-api-keyin: header
type: apiKeyname: x-public-keyin: header
type: apiKeyname: x-wallets-secretin: header

Request

Base URL
https://toket-public-gateway-3cpfdsl0.uc.gateway.dev/v0
api_key
public_key
wallet_secret
walletId — path required
Body required
{
"chain": "polygon",
"tokenAddress": "0x0000000000000000000000000000000000000000",
"tokenId": "string",
"destinationAddress": "0x0000000000000000000000000000000000000000"
}
curl -L -X POST 'https://toket-public-gateway-3cpfdsl0.uc.gateway.dev/v0/wallets/:walletId/transactions/transferNft' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'x-api-key: <API_KEY_VALUE>' \
-H 'x-public-key: <API_KEY_VALUE>' \
-H 'x-wallets-secret: <API_KEY_VALUE>' \
--data-raw '{
"chain": "polygon",
"tokenAddress": "0x0000000000000000000000000000000000000000",
"tokenId": "string",
"destinationAddress": "0x0000000000000000000000000000000000000000"
}'