Skip to main content
POST
/
api
/
zerion
/
wallets
/zerion/wallets
curl --request POST \
  --url https://api.anysite.io/api/zerion/wallets \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "address": "<string>",
  "timeout": 300,
  "currency": "usd"
}
'
[
  {
    "address": "<string>",
    "@type": "ZerionWallet",
    "name": "<string>",
    "image": "<string>",
    "total_value": 123,
    "change_24h_absolute": 123,
    "change_24h_percent": 123,
    "nft_floor_price": 123,
    "nft_last_price": 123,
    "is_premium": false,
    "position_value_by_type": {
      "@type": "ZerionPositionTypeValues",
      "assets": 123,
      "deposited": 123,
      "staked": 123,
      "borrowed": 123,
      "locked": 123
    },
    "value_by_chain": {},
    "nft_value_by_chain": {},
    "identities": []
  }
]

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
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

address
string
required
@type
string
default:ZerionWallet
name
string | null
image
string | null
total_value
number | null
change_24h_absolute
number | null
change_24h_percent
number | null
nft_floor_price
number | null
nft_last_price
number | null
is_premium
boolean
default:false
position_value_by_type
object
value_by_chain
object
nft_value_by_chain
object
identities
object[]