Comment on page
NFT Tranfers
Details of all transfers, sales and similar actions for a particular NFT at a contract address are included.
It is a service that provides information about where the NFT produced with this request was sold, how much it was sold, when it was sold and similar information. You can use this service according to your project.
var axios = require('axios');
axios.get('https://api.getdefy.co/outsource/nft/token_transfers', {
params: {
address: '0x8c186802b1992f7650ac865d4ca94d55ff3c0d17',
id: '32',
network: 'ethereum',
key: 'API_KEY',
},
})
.then(function (response) {
console.log(JSON.stringify(response.data));
})
.catch(function (error) {
console.log(error);
});
address
(required): A contract address (i.e.0x1a2b3x...
). If specified, the user attached to the query is ignored and the address will be used instead.id
(required): A token id (i.e.23
).network
(required): Blockchain network. Can be"ethereum", "bsc", "avalanche", "polygon"
key
(required): API key for requests.
get
https://api.getdefy.co/outsource
/nft/token_transfers
Request Example
Parameters
Query
key*
API Key
address*
Wallet Address
id*
Token ID
network*
Can be "ethereum", "bsc", "avalanche", "polygon"
Responses
200: OK
400: Bad Request
Last modified 4mo ago