GET
/
apechain
/
v1
/
address
/
{walletAddress}
/
balance
/
historical
curl --request GET \
  --url https://data-api.cloud.ormi.dev/apechain/v1/address/{walletAddress}/balance/historical
{
  "address": "<string>",
  "items": [
    {
      "balance": "<string>",
      "block_height": 123,
      "contract_address": "<string>",
      "contract_decimals": 123,
      "contract_name": "<string>",
      "erc_type": "<string>",
      "is_native": true,
      "last_transferred_at": "2023-11-07T05:31:56Z",
      "last_transferred_block_height": 123
    }
  ],
  "updated_at": "2023-11-07T05:31:56Z"
}

Path Parameters

walletAddress
string
required

A wallet address.

Query Parameters

contract-address
string

Contract address to filter by.

block-height
integer

Ending block to define a block range. Omitting this parameter defaults to the latest block height.

date
string

Ending date to define a block range (YYYY-MM-DD). Omitting this parameter defaults to the current date.

Response

200 - application/json
OK
address
string
required
items
object[]
required
updated_at
string
required