GET
/
v2
/
{chain_name}
/
wallets
/
{wallet_address}
/
portfolio
/
daily
Get Wallet Daily Portfolio
curl --request GET \
  --url https://api.data.ormilabs.com/v2/{chain_name}/wallets/{wallet_address}/portfolio/daily
{
"next_cursor": "ICJkYXNkYXMifQ==",
"portfolio": [
{
"block_number": 22000000,
"block_timestamp": "2025-05-12T13:00:05Z",
"holdings": [
{
"balance": 123123.1321321,
"balance_raw": "1231231321321",
"token": {
"address": 2.807754160281623e+47,
"decimals": 7,
"name": "Bacacacac",
"standard": "ERC-20",
"symbol": "BAC"
}
}
]
}
]
}

Authorizations

Authorization
string
header
required

(Optional) Enter your API key in the format: Bearer <api_key>. Providing an API key may grant higher rate limits or access to additional features. The API will function without an API key for basic access.

Path Parameters

wallet_address
string
required

The wallet address.

Example:

1.2380129724542482e+48

chain_name
enum<string>
required

The name or ID of the blockchain.

Available options:
ethereum
Example:

"ethereum"

Query Parameters

token_address
string

Token contract addresses to filter by.

Example:

1.074999140385143e+48

token_standard
enum<string>
default:ERC-20

Token standard to filter by.

Available options:
ERC-20,
ERC-721,
ERC-1155
from_block
integer

Starting block number for the range query.

Required range: x >= 0
from_timestamp
string<date-time>

Starting timestamp for the range query (Unix or ISO 8601).

Example:

"2024-05-20T12:00:00Z"

to_block
integer

Ending block number for the range query.

Required range: x >= 0
to_timestamp
string<date-time>

Ending timestamp for the range query (Unix or ISO 8601).

Example:

"2024-05-25T12:00:00Z"

limit
integer
default:100

Maximum number of items to return.

Required range: 1 <= x <= 1000
cursor
string

Cursor for pagination to retrieve the next set of results.

Response

200
application/json

Successfully retrieved daily portfolio.

The response is of type object.