Transfer NFTs Between Wallets
To transfer NFTs between wallets, send a POST request to the /wallet/erc721/tokens
endpoint, calling the :transfer
method.
Transfer an NFT between wallets
POST
https://api.playfix.io/wallet/erc721/tokens:transfer
Headers
Authorization*
String
Bearer <your_access_token>
Request Body
wallet*
String
Name of the sender's wallet containing the NFT. This should be the value of name
from a previously created wallet. It begins with wallets/
followed by a ULID.
receiverAddress*
String
Wallet address of the destination where you want to send the NFT to. This begins with "0x...
"
contractAddress*
String
Contract address of the NFT item you want to transfer. You can get this by reading the details of the NFT item.
tokenId*
String
The unique number
assigned to the NFT item when the NFT collection contract is deployed.
password*
String
The 32-character long wallet password entered when creating the wallet.
Example cURL API Call
Example Python API Call
Request Body
wallet
- Name of the sender's wallet. This should be the value ofname
from a previously created wallet. It begins withwallets/
followed by a ULID.receiverAddress
- Wallet address of the destination where you want to send the NFT. This begins with "0x...
"contractAddress
- Contract address of the NFT item you want to transfer. You can get this by reading the details of the NFT item.tokenId
- The uniquenumber
assigned to the NFT item when the NFT collection contract is deployed.password
- The 32-character long wallet password entered when creating the wallet.
Response
Last updated