Synchronization List

What is this request?

You can view all synchronized wallets connected to your API key with this request.

Tutorial

var axios = require('axios');

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

Options

  • 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/synclist

Query Parameters

NameTypeDescription

key*

String

API Key

language

String

Can be: "en", "tr"

{
  "result": {
    "message": "OK",
    "code": 0
  },
  "data": [
    {
      "address": "0x1d0d2d8c85441050abc9eb654399fa198fbd5722",
      "created_at": "2022-12-25T15:33:37.602Z"
    },
    {
      "address": "0xb54175306fd7fd6fc2c712feb5fe53cf66467741",
      "created_at": "2022-12-25T21:02:42.445Z"
    }
  ]
}

Last updated