Transfer NFTs

Transferring NFTs between wallets

Give your users full control over their NFTs by allowing them to move them as needed between wallets or to a 3rd party non-custodial wallet.

Using full white-label APIs

const fetch = require('node-fetch');

const url = 'https://staging.crossmint.com/api/v1-alpha1/transfer';
const options = {
  method: 'POST',
  headers: {
    accept: 'application/json',
    'content-type': 'application/json',
    'X-CLIENT-SECRET': '',
    'X-PROJECT-ID': ''
  },
   body: JSON.stringify({
    chain:'',
    tokenId:'',
    toAddress: '',
    tokenMintAddress: '',
    fromAddress: ''
  })
};

fetch(url, options)
  .then(res => res.json())
  .then(json => console.log(json))
  .catch(err => console.error('error:' + err));

Using Crossmint Connect

Contact us

Using partial white-label APIs [Not yet live, coming soon]

Contact us