Balances
Get ERC-721 balance
Balances
Transactions
Events
Restaked ETH
Balances
Get ERC-721 balance
Lists ERC-721 token balances of a wallet address.
GET
/
{chainName}
/
v1
/
address
/
{walletAddress}
/
balance
/
erc721
curl --request GET \
--url https://data-api.cloud.ormi.dev/{chainName}/v1/address/{walletAddress}/balance/erc721
{
"erc721TokenBalances": [
{
"address": 6.4956264143494794e+47,
"balance": "2000000000000000000",
"ercType": "ERC-721",
"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"
},
"tokenId": "<string>",
"tokenUri": "<string>"
}
],
"resultCount": 123
}
Path Parameters
A wallet address.
Name of the blockchain (e.g., ethereum, polygon, bsc)
Query Parameters
A contract address to filter by.
Page number
Required range:
x >= 0
Page size
Required range:
1 <= x <= 100
Response
200 - application/json
A list of ERC-721 token balances.
Contract address of the ERC-721 token.
Example:
6.4956264143494794e+47
ERC standard type.
Example:
"ERC-721"
Additional attributes of the token.
Description of the token.
External URL related to the token.
URI for the token image.
Minted block number of the token.
Example:
13522365
Name of the token.
Example:
"Wrapped AVAX"
Symbol of the token.
Example:
"WAVAX"
Decimals of the token.
Minted timestamp of the token.
Example:
"2023-10-09 07:57:06"
Unique identifier of the token.
URI pointing to the token metadata.
balance of NFT
Example:
"2000000000000000000"
amount of nfts equal to page size.
curl --request GET \
--url https://data-api.cloud.ormi.dev/{chainName}/v1/address/{walletAddress}/balance/erc721
{
"erc721TokenBalances": [
{
"address": 6.4956264143494794e+47,
"balance": "2000000000000000000",
"ercType": "ERC-721",
"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"
},
"tokenId": "<string>",
"tokenUri": "<string>"
}
],
"resultCount": 123
}