GET
/
apechain
/
v1
/
address
/
{walletAddress}
/
transfers
/
erc20
curl --request GET \
  --url https://data-api.cloud.ormi.dev/apechain/v1/address/{walletAddress}/transfers/erc20
{
  "resultCount": 2,
  "transfers": [
    {
      "block_number": 12548705,
      "block_timestamp": "2025-03-31T15:07:08Z",
      "contract": {
        "address": "0x48b62137edfa95a428d35c09e44256a739f6b557",
        "decimals": 18,
        "erc_type": "ERC-20",
        "logoUri": null,
        "name": "Wrapped ApeCoin",
        "symbol": "WAPE"
      },
      "from_address": "0x7f74e5a74f1ce5eb9e7595479ed22606e2c0da0d",
      "log_index": 11,
      "to_address": "0x055faa138133135e2d61b2f3efbebf090d489ba2",
      "transaction_hash": "0xa7c43862becfe4719afcab75f5a537d886b940e492320e2291ea598730351886",
      "value": "1000100000"
    },
    {
      "block_number": 12548185,
      "block_timestamp": "2025-03-31T14:56:01Z",
      "contract": {
        "address": "0x48b62137edfa95a428d35c09e44256a739f6b557",
        "decimals": 18,
        "erc_type": "ERC-20",
        "logoUri": null,
        "name": "Wrapped ApeCoin",
        "symbol": "WAPE"
      },
      "from_address": "0x055faa138133135e2d61b2f3efbebf090d489ba2",
      "log_index": 0,
      "to_address": "0x7f74e5a74f1ce5eb9e7595479ed22606e2c0da0d",
      "transaction_hash": "0x7ec586079347dec1fb9fb73a3f1fdad70e1ae83bb408e118d2481eeedd553625",
      "value": "1000000000"
    }
  ]
}

Path Parameters

walletAddress
string
required

A wallet address.

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.

page
integer | null
default:0

Page number

Required range: x >= 0
page-size
integer | null
default:100

Page size

Required range: 1 <= x <= 100

Response

200 - application/json
OK
resultCount
integer
required

amount of transfers equal to page size.

transfers
object[]
required