GET
/
{chainName}
/
v1
/
address
/
{walletAddress}
/
transfers
/
erc721
curl --request GET \
  --url https://data-api.cloud.ormi.dev/{chainName}/v1/address/{walletAddress}/transfers/erc721
{
  "resultCount": 123,
  "totalCount": 123,
  "transfers": [
    {
      "amount": "<string>",
      "block_number": 123,
      "block_timestamp": "2023-11-07T05:31:56Z",
      "from_address": "<string>",
      "log_index": 123,
      "to_address": "<string>",
      "token": {
        "address": "<string>",
        "erc_type": "<string>",
        "metadata": {
          "attributes": "<string>",
          "decimals": 123,
          "description": "<string>",
          "externalUrl": "<string>",
          "imageUri": "<string>",
          "mintedBlockNumber": 13522365,
          "mintedTimestamp": "2023-10-09 07:57:06",
          "name": "Wrapped AVAX",
          "symbol": "WAVAX"
        },
        "name": "<string>",
        "symbol": "<string>",
        "token_id": "<string>"
      },
      "transaction_hash": "<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.

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
totalCount
integer | null

total amount of transfers.