Synchronize

What is this request?

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.

Why do I have to use synchronize?

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.

Tutorial

var axios = require('axios');

axios.get('https://api.getdefy.co/v1/o/wallet/sync', {
    params: {
      address: '0x787970ad122d5947579e613c2464d9540081b46f',
      language: 'en',
      key: 'API_KEY',
    },
  })
  .then(function (response) {
    console.log(JSON.stringify(response.data));
  })
  .catch(function (error) {
    console.log(error);
  });

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.

Request Example

GET https://api.getdefy.co/v1/o/wallet/sync

Query Parameters

NameTypeDescription

address*

String

Wallet Address

language

String

Can be: "en", "tr"

key*

String

API Key

{
  "result": {
    "message": "OK",
    "code": 0
  }
}

Last updated