Skip to main content
POST
/
api
/
zerion
/
wallets
/
chart
/zerion/wallets/chart
curl --request POST \
  --url https://api.anysite.io/api/zerion/wallets/chart \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "address": "<string>",
  "timeout": 300,
  "period": "1d",
  "currency": "usd"
}
'
[
  {
    "recorded_at": 123,
    "@type": "ZerionChartPoint",
    "value": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
address
string
required

Wallet address: an EVM 0x address or an ENS / identity name

Examples:

"0xd8da6bf26964af9d7eed9e03e53415d37aa96045"

"vitalik.eth"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
period
enum<string>
default:1d

Time range of the portfolio value series

Available options:
1h,
1d,
1w,
1m,
1y,
max
currency
enum<string>
default:usd

Currency to denominate portfolio values in

Available options:
usd,
eur,
gbp,
jpy,
aud,
cad,
chf,
cny,
inr,
krw,
rub,
brl,
try,
btc,
eth

Response

Successful Response

recorded_at
integer
required
@type
string
default:ZerionChartPoint
value
number | null