Comment on page

NFT List

What is this request?

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.

What can I do with this service?

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.

Tutorial

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);
});
After synchronized wallet you want to use you can test it like this.

Options

  • 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 is en. Can be en or tr.
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