Logo
Covalent API Documentation

getErc20TransfersForWalletAddress

GET https://api.covalenthq.com/v1/:chainName/address/:walletAddress/transfers_v2/?quote-currency=&contract-address=&starting-block=&ending-block=&page-size=&page-number=

Returns: Erc20TransfersResponse

{
  "address" : "{{STRING}}",
  "updated_at" : "{{DATETIME}}",
  "next_update_at" : "{{DATETIME}}",
  "quote_currency" : "{{STRING}}",
  "chain_id" : "{{INTEGER}}",
  "chain_name" : "{{STRING}}",
  "items" : [ {
    "block_signed_at" : "{{DATETIME}}",
    "block_height" : "{{INTEGER}}",
    "tx_hash" : "{{STRING}}",
    "tx_offset" : "{{INTEGER}}",
    "successful" : "{{BOOLEAN}}",
    "from_address" : "{{STRING}}",
    "from_address_label" : "{{STRING}}",
    "to_address" : "{{STRING}}",
    "to_address_label" : "{{STRING}}",
    "value" : "{{INTEGER}}",
    "value_quote" : "{{DOUBLE}}",
    "pretty_value_quote" : "{{STRING}}",
    "gas_offered" : "{{INTEGER}}",
    "gas_spent" : "{{INTEGER}}",
    "gas_price" : "{{INTEGER}}",
    "fees_paid" : "{{STRING}}",
    "gas_quote" : "{{DOUBLE}}",
    "pretty_gas_quote" : "{{STRING}}",
    "gas_quote_rate" : "{{DOUBLE}}",
    "transfers" : [ {
      "block_signed_at" : "{{DATETIME}}",
      "tx_hash" : "{{STRING}}",
      "from_address" : "{{STRING}}",
      "from_address_label" : "{{STRING}}",
      "to_address" : "{{STRING}}",
      "to_address_label" : "{{STRING}}",
      "contract_decimals" : "{{INTEGER}}",
      "contract_name" : "{{STRING}}",
      "contract_ticker_symbol" : "{{STRING}}",
      "contract_address" : "{{STRING}}",
      "logo_url" : "{{STRING}}",
      "transfer_type" : "{{STRING}}",
      "delta" : "{{INTEGER}}",
      "balance" : "{{STRING}}",
      "quote_rate" : "{{DOUBLE}}",
      "delta_quote" : "{{DOUBLE}}",
      "pretty_delta_quote" : "{{STRING}}",
      "balance_quote" : "{{DOUBLE}}",
      "method_calls" : [ {
        "sender_address" : "{{STRING}}",
        "method" : "{{STRING}}"
      } ],
      "explorers" : [ {
        "label" : "{{STRING}}",
        "url" : "{{STRING}}"
      } ]
    } ]
  } ],
  "pagination" : {
    "has_more" : "{{BOOLEAN}}",
    "page_number" : "{{INTEGER}}",
    "page_size" : "{{INTEGER}}",
    "total_count" : "{{INTEGER}}"
  }
}

 

Body PARAM

Key Datatype Required Description 
quote-currency
null
contract-address
null
starting-block
null
ending-block
null
page-size
null
Curl
curl -X GET 'https://api.covalenthq.com/v1/:chainName/address/:walletAddress/transfers_v2/?quote-currency=&contract-address=&starting-block=&ending-block=&page-size=&page-number=?quote-currency=&contract-address=&starting-block=&ending-block=&page-size=&page-number=' -H 'Content-Type: application/json'

ENDPOINTS