GET
/
wallet
/
charts
cURL
curl --request GET \
  --url https://openapiv1.coinstats.app/wallet/charts \
  --header 'X-API-KEY: <api-key>'
[
  {
    "data": [
      [
        1735038000000,
        8.3034,
        0.00008833,
        0.00244788
      ],
      [
        1735041600000,
        8.3345,
        0.0000883,
        0.00244324
      ]
    ],
    "walletAddress": "0x1234567890abcdef1234567890abcdef12345678",
    "connectionId": "ethereum",
    "message": "An error occurred while fetching data"
  }
]
40 credits per request
Provides chart data for multiple wallet addresses across various networks. Each wallet-network combination incurs a cost of 40 credits. Choosing “all” networks for a wallet costs 400 credits per wallet. For instance, “ethereum:0x1234..,all:0x5678..,all:0x9012..” results in a cost of 1 x 40 + 2 x 400 credits. The response includes data for each wallet individually and aggregated totals if requested.

Authorizations

X-API-KEY
string
header
required

API key needed to access the endpoints. Example: 'demo-api-key'

Query Parameters

type
string
required

One of 24h, 1w, 1m, 3m, 6m, 1y, all time periods.

wallets
string
required

Comma-separated list of wallet addresses in format "connectionId:address"

Example:

"ethereum:0x1234567890abcdef1234567890abcdef12345678,polygon:0x4567890abcdef1234567890abcdef1234567890abc"

aggregated
boolean
default:true

Whether to return aggregated data

Response

200
application/json

Get Chart data for multiple wallets

The response is of type object[].