GET
/
apechain
/
v1
/
address
/
{walletAddress}
/
transfers
/
erc1155
curl --request GET \
  --url https://data-api.cloud.ormi.dev/apechain/v1/address/{walletAddress}/transfers/erc1155
{
  "resultCount": 1,
  "transfers": [
    {
      "amount": "1",
      "block_number": 6774463,
      "block_timestamp": "2024-12-17T03:45:02Z",
      "from_address": "0xf8c7721a60a98b3b3f221f4874803da8a4e81c9e",
      "log_index": 0,
      "to_address": "0xcfdd150201beea6fd9ed67bd2573a79ec909cbe6",
      "token": {
        "address": "0x99ee4e8fd06b06989485051b26d676a2375f89d9",
        "erc_type": "ERC-1155",
        "metadata": {
          "attributes": "null",
          "description": "We’re cooking. Wen airdrop?",
          "imageUri": "https://storage.googleapis.com/rbo/ape/banana2.gif",
          "mintedBlockNumber": 2244959,
          "mintedTimestamp": "2024-10-27T02:05:50Z",
          "name": "Banana Card"
        },
        "name": "Banana Card",
        "symbol": "",
        "token_id": "10"
      },
      "transaction_hash": "0x97de1c233937121cee5e25ce3e05e9da40bbba757c3bd32a3f0ef4ea6d010a61"
    }
  ]
}

Path Parameters

walletAddress
string
required

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

The response is of type object.