GET
/
{chainName}
/
v1
/
address
/
{walletAddress}
/
transfers
/
erc20
curl --request GET \
  --url https://data-api.cloud.ormi.dev/{chainName}/v1/address/{walletAddress}/transfers/erc20
{
  "cursor": "<string>",
  "resultCount": 123,
  "transfers": [
    {
      "block_number": 123,
      "block_timestamp": "2023-11-07T05:31:56Z",
      "contract": {
        "address": "<string>",
        "decimals": 123,
        "erc_type": "<string>",
        "logoUri": "<string>",
        "name": "<string>",
        "symbol": "<string>"
      },
      "from_address": "<string>",
      "log_index": 123,
      "to_address": "<string>",
      "transaction_hash": "<string>",
      "value": "<string>"
    }
  ]
}

Path Parameters

walletAddress
string
required

A wallet address.

chainName
string
required

Name of the blockchain (e.g., ethereum, polygon, bsc)

Query Parameters

starting-block
integer

The block height to start from, inclusive. Defaults to genesis block.

ending-block
integer

The block height to end at, inclusive. Defaults to latest block height.

contract-address
string

Contract address to filter by.

cursor
string

The cursor returned in previous response (for getting the next page).

limit
integer | null
default:100

Number of records to fetch

Required range: 1 <= x <= 100

Response

200 - application/json

OK

The response is of type object.