Wallet Chart
Get wallet chart data for specific time ranges
Multipliers
Multipliers
Required
Required
- address: Wallet address.
- connectionId: Identifier of the connection (chain) for the address.
- type: Time range for the chart.
Optional
Optional
- currency: Display currency (defaults to USD).
Authorizations
API key required to access the endpoints. Generate one from your dashboard at https://openapi.coinstats.app and pass it in the X-API-KEY request header. Never expose your key in client-side code.
Query Parameters
One of time periods.
24h, 1w, 1m, 3m, 6m, 1y, all The wallet address for which the chart is being queried.
"0x1234567890abcdef1234567890abcdef12345678"
The identifier of connection from /wallet/blockchains call response. Can be a single network (e.g., "ethereum") or a comma-separated list of networks or "all" for all connections.
"base-wallet"
The blockchain network identifier from /wallet/blockchains call response. Either connectionId or blockchain must be provided. If both are provided, connectionId will be used.
"base"
Response
Get Chart of Wallet
Array of historical price data points. Each data point is an array containing:
- TIMESTAMP - Unix timestamp in seconds
- USD - Price in USD
- BTC - Price in Bitcoin
- ETH - Price in Ethereum
[
[
1735038000000,
8.3034,
0.00008833,
0.00244788
],
[
1735041600000,
8.3345,
0.0000883,
0.00244324
]
]