curl -X GET 'https://crypto-api.yativo.com/api/analytics/overview?from=2026-03-01&to=2026-03-31' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
"status": "success",
"data": {
"period": {
"from": "2026-03-01",
"to": "2026-03-31"
},
"transactions": {
"total_count": 1284,
"total_volume_usd": "428950.00",
"successful": 1251,
"failed": 18,
"pending": 15
},
"accounts": {
"total": 340,
"active": 218,
"new_this_period": 47
},
"top_assets": [
{
"symbol": "USDC",
"network": "polygon",
"volume_usd": "312400.00",
"count": 842
},
{
"symbol": "ETH",
"network": "ethereum",
"volume_usd": "88200.00",
"count": 210
}
]
}
}
Get a high-level summary of transaction volume, active accounts, and platform activity
curl -X GET 'https://crypto-api.yativo.com/api/analytics/overview?from=2026-03-01&to=2026-03-31' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
"status": "success",
"data": {
"period": {
"from": "2026-03-01",
"to": "2026-03-31"
},
"transactions": {
"total_count": 1284,
"total_volume_usd": "428950.00",
"successful": 1251,
"failed": 18,
"pending": 15
},
"accounts": {
"total": 340,
"active": 218,
"new_this_period": 47
},
"top_assets": [
{
"symbol": "USDC",
"network": "polygon",
"volume_usd": "312400.00",
"count": 842
},
{
"symbol": "ETH",
"network": "ethereum",
"volume_usd": "88200.00",
"count": 210
}
]
}
}
Bearer YOUR_ACCESS_TOKEN2026-03-012026-03-31Response Type Definitions
interface AnalyticsOverviewResponse {
status: "success";
data: {
period: { from: string; to: string };
transactions: {
total_count: number;
total_volume_usd: string;
successful: number;
failed: number;
pending: number;
};
accounts: {
total: number;
active: number;
new_this_period: number;
};
top_assets: Array<{
symbol: string;
network: string;
volume_usd: string;
count: number;
}>;
};
}
curl -X GET 'https://crypto-api.yativo.com/api/analytics/overview?from=2026-03-01&to=2026-03-31' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
"status": "success",
"data": {
"period": {
"from": "2026-03-01",
"to": "2026-03-31"
},
"transactions": {
"total_count": 1284,
"total_volume_usd": "428950.00",
"successful": 1251,
"failed": 18,
"pending": 15
},
"accounts": {
"total": 340,
"active": 218,
"new_this_period": 47
},
"top_assets": [
{
"symbol": "USDC",
"network": "polygon",
"volume_usd": "312400.00",
"count": 842
},
{
"symbol": "ETH",
"network": "ethereum",
"volume_usd": "88200.00",
"count": 210
}
]
}
}