GET
/
{chainName}
/
v1
/
address
/
{walletAddress}
/
balance
/
portfolio
curl --request GET \
  --url https://data-api.cloud.ormi.dev/{chainName}/v1/address/{walletAddress}/balance/portfolio
[
  {
    "contract": {
      "address": "<string>",
      "decimals": 123,
      "erc_type": "<string>",
      "logoUri": "<string>",
      "name": "<string>",
      "symbol": "<string>"
    },
    "holdings": [
      {
        "balance": "<string>",
        "raw_balance": "<string>",
        "timestamp": "<string>"
      }
    ]
  }
]

Path Parameters

walletAddress
string
required

A wallet address.

chainName
string
required

Name of the blockchain (e.g., ethereum, polygon, bsc)

Query Parameters

days
integer
default:30

The number of days to return data for. Defaults to 30 days.

Required range: x >= 1
contract-address
string

A contract address to filter by.

Response

200 - application/json
OK
contract
object
required
holdings
object[]
required