Comment on page
NFT List
You can see all your ERC-721 tokens in these services ethereum and polygon network by wallet. Avalanche and binance smart chain supports is soon.
With this service, you can obtain all NFTs of the given wallet address via multi-chain with a single request. With the received NFT information, you can request NFTs in your project or wallet application.
var axios = require('axios');
axios.get('https://api.getdefy.co/v1/o/wallet/nfts', {
params: {
address: '0x787970ad122d5947579e613c2464d9540081b46f',
language: 'en',
key: 'API_KEY',
},
})
.then(function (response) {
console.log(JSON.stringify(response.data));
})
.catch(function (error) {
console.log(error);
});
address
(required): A user address (i.e.0x1a2b3x...
). If specified, the user attached to the query is ignored and the address will be used instead.key
(required): API key for requests.language
(optional): Service language. Default value isen
. Can been
ortr
.
get
https://api.getdefy.co/v1/o
/wallet/nfts
Request Example
Parameters
Query
key*
API Key
address*
Wallet Address
language
Can be: "en", "tr"
Responses
200: OK
400: Bad Request
Last modified 4mo ago