Return USD-valued token holdings for an EVM wallet with native and ERC-20 balances.
Settled per request over x402. No subscription, no minimum.
99.1%
210ms
1,320
0 USDC
https://www.orches.xyz/api/services/svc_wallet_portfolio/call
What the service accepts, what it returns, and a worked example of each.
1{
2 "type": "object",
3 "additionalProperties": false,
4 "required": [
5 "address"
6 ],
7 "properties": {
8 "address": {
9 "type": "string",
10 "pattern": "^0x[a-fA-F0-9]{40}$"
11 }
12 }
13}1{
2 "type": "object",
3 "required": [
4 "address",
5 "totalUsd",
6 "tokens"
7 ],
8 "properties": {
9 "address": {
10 "type": "string"
11 },
12 "totalUsd": {
13 "type": "number"
14 },
15 "tokens": {
16 "type": "array",
17 "items": {
18 "type": "object"
19 }
20 }
21 }
22}1{
2 "address": "0x1234567890abcdef1234567890abcdef12345678"
3}1{
2 "address": "0x1234567890abcdef1234567890abcdef12345678",
3 "totalUsd": 2100,
4 "tokens": [
5 {
6 "symbol": "ETH",
7 "name": "Ether",
8 "usdValue": 2000
9 }
10 ]
11}Looks up an EVM wallet portfolio through the configured Alchemy portfolio provider and returns total USD value plus token-level holdings.

No reviews yet.
Connect your wallet to leave a review.