Skip to main content

WalletPress API ๐ŸŸข

Base URL: http://<your-host>:8001

Walletsโ€‹

MethodPathDescription
POST/v1/walletsCreate wallet (label + addresses)
GET/v1/walletsList wallets
GET/v1/wallets/{id}Wallet detail + balances
DELETE/v1/wallets/{id}Delete wallet

Balances & portfolioโ€‹

MethodPathDescription
GET/v1/wallets/{id}/balancesAll balances, USD-valued
GET/v1/wallets/{id}/portfolioAggregated allocation + P&L
GET/v1/portfolioCross-wallet aggregate

Transactionsโ€‹

MethodPathDescription
GET/v1/wallets/{id}/tx?chain=&cursor=Paginated history

Exampleโ€‹

curl http://localhost:8001/v1/wallets/w1/balances
{
"wallet_id": "w1",
"total_usd": 48213.55,
"balances": [
{"chain": "solana", "symbol": "SOL", "amount": "182.4", "usd": 31008.0},
{"chain": "ethereum", "symbol": "ETH", "amount": "5.1", "usd": 17205.55}
],
"as_of": "2026-08-30T00:00:00Z"
}