Transfer NFT
curl --request POST \
--url https://overlay.fun/nfts/{mint_address}/transfer \
--header 'Content-Type: application/json' \
--header 'api-key: <api-key>' \
--data '
{
"recipient": "example_recipient_address"
}
'const options = {
method: 'POST',
headers: {'api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({recipient: 'example_recipient_address'})
};
fetch('https://overlay.fun/nfts/{mint_address}/transfer', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"success": true,
"data": {},
"message": "<string>"
}{
"success": false,
"message": "Invalid request body.",
"error": "Bad request"
}{
"success": false,
"message": "Invalid api-key",
"error": "Unauthorized"
}NFTs
Transfer NFT
Transfers an NFT to a recipient address.
POST
https://overlay.fun
/
nfts
/
{mint_address}
/
transfer
Transfer NFT
curl --request POST \
--url https://overlay.fun/nfts/{mint_address}/transfer \
--header 'Content-Type: application/json' \
--header 'api-key: <api-key>' \
--data '
{
"recipient": "example_recipient_address"
}
'const options = {
method: 'POST',
headers: {'api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({recipient: 'example_recipient_address'})
};
fetch('https://overlay.fun/nfts/{mint_address}/transfer', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"success": true,
"data": {},
"message": "<string>"
}{
"success": false,
"message": "Invalid request body.",
"error": "Bad request"
}{
"success": false,
"message": "Invalid api-key",
"error": "Unauthorized"
}Authorizations
Path Parameters
Solana mint address or EVM contract address.
Body
application/json
Available options:
solana, evm, ethereum, sepolia, base, polygon, bsc, monad, sei, blast, sonic, linea, scroll, mantle, zora, optimism, arbitrum, avalanche, boba, metis, bera, celo 