Comment on page
Synchronize
If you want to use our services for any blockchain wallet, you need to synchronize the wallet you want to use with our services. With this service you can synchronize wallets.
By synchronizing a wallet, you can access a lot of data about that wallet. In addition to the information you can get over the network, you have access to the analysis and easy services we have developed. You can also have information about the wallets using your application by using the synchronize service.
One synchronize creates one billion possibilities.
1
var axios = require('axios');
2
3
axios.get('https://api.getdefy.co/v1/o/wallet/sync', {
4
params: {
5
address: '0x787970ad122d5947579e613c2464d9540081b46f',
6
language: 'en',
7
key: 'API_KEY',
8
},
9
})
10
.then(function (response) {
11
console.log(JSON.stringify(response.data));
12
})
13
.catch(function (error) {
14
console.log(error);
15
});
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/sync
Request Example
Parameters
Query
address*
Wallet Address
language
Can be: "en", "tr"
key*
API Key
Responses
200: OK
400: Bad Request
Last modified 4mo ago