ERC-20 Transfers

ERC-20 Transfers

Endpoint: ERC-20 Transfers

/transfers_erc20/{address}

Returns a list of transfers of ERC-20 tokens for address, across all networks, sorted by time in descending order.

Example

https://datalayer.decommas.net/datalayer/api/v1/transfers_erc20/{address}?api-key={YOUR-API-KEY}

GET-params:

  • api-key
  • networks (default networks=all). You can pass the names of the networks, for example, for optimism and arbitrum, the request will look like this:
    • https://datalayer.decommas.net/datalayer/api/v1/transfers_erc20/{address}?networks=optimism,arbitrum&api-key={YOUR-API-KEY}
  • limit - parameter for pagination (default 20, min 20, max 100)
  • offset - parameter for pagination (default 0)
{
  "status": 200,
  "result": [
    {
      "chain_name": "bsc",
      "chain_id": 56,
      "block_number": 27309374,
      "block_timestamp": 1681380895,
      "log_index": 709,
      "from_address": "0xefdca55e4bce6c1d535cb2d0687b5567eef2ae83",
      "to_address": "0x1bd9582f085b2f4575ffd53dd5c9ea328a677191",
      "token_address": "0x396d8805d184ef5325b5ccd107638adfd38ccff8",
      "amount": "700000000000000000000000",
      "transaction_hash": "0x33a2c98d6427869f6af90690393ad27d8d96df7585ab3c724c6f5ab2761fb8c3",
      "method": null,
      "method_hash": "0xd7c6bb98"
    },
    {
      "chain_name": "bsc",
      "chain_id": 56,
      "block_number": 27255945,
      "block_timestamp": 1681219443,
      "log_index": 96,
      "from_address": "0x1bd9582f085b2f4575ffd53dd5c9ea328a677191",
      "to_address": "0x81ab74a9f9d7457ff47dfd102e78a340cf72ec39",
      "token_address": "0xe9e7cea3dedca5984780bafc599bd69add087d56",
      "amount": "10000000000000000000",
      "transaction_hash": "0xd2f2ac6414f4ddb4652893925a4f9afc1e49430fcc83f019e68ef35ff310f3a2",
      "method": null,
      "method_hash": "0xa11b1198"
    }
  ]
}