curl -X GET 'https://crypto-api.yativo.com/api/analytics/volume?from=2026-03-01&to=2026-03-31&group_by=asset' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
"status": "success",
"data": {
"period": {
"from": "2026-03-01",
"to": "2026-03-31"
},
"breakdown": [
{
"asset": "USDC",
"volume_usd": "312400.00",
"volume_native": "312400.00",
"count": 842,
"percentage": 72.8
},
{
"asset": "ETH",
"volume_usd": "88200.00",
"volume_native": "29.4",
"count": 210,
"percentage": 20.6
},
{
"asset": "SOL",
"volume_usd": "28350.00",
"volume_native": "283.5",
"count": 232,
"percentage": 6.6
}
],
"total_volume_usd": "428950.00"
}
}
Retrieve transaction volume broken down by asset and network
curl -X GET 'https://crypto-api.yativo.com/api/analytics/volume?from=2026-03-01&to=2026-03-31&group_by=asset' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
"status": "success",
"data": {
"period": {
"from": "2026-03-01",
"to": "2026-03-31"
},
"breakdown": [
{
"asset": "USDC",
"volume_usd": "312400.00",
"volume_native": "312400.00",
"count": 842,
"percentage": 72.8
},
{
"asset": "ETH",
"volume_usd": "88200.00",
"volume_native": "29.4",
"count": 210,
"percentage": 20.6
},
{
"asset": "SOL",
"volume_usd": "28350.00",
"volume_native": "283.5",
"count": 232,
"percentage": 6.6
}
],
"total_volume_usd": "428950.00"
}
}
Bearer YOUR_ACCESS_TOKEN2026-03-012026-03-31asset, network, asset_network. Default: assetResponse Type Definitions
interface VolumeAnalyticsResponse {
status: "success";
data: {
period: { from: string; to: string };
breakdown: Array<{
asset?: string;
network?: string;
volume_usd: string;
volume_native: string;
count: number;
percentage: number;
}>;
total_volume_usd: string;
};
}
curl -X GET 'https://crypto-api.yativo.com/api/analytics/volume?from=2026-03-01&to=2026-03-31&group_by=asset' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
"status": "success",
"data": {
"period": {
"from": "2026-03-01",
"to": "2026-03-31"
},
"breakdown": [
{
"asset": "USDC",
"volume_usd": "312400.00",
"volume_native": "312400.00",
"count": 842,
"percentage": 72.8
},
{
"asset": "ETH",
"volume_usd": "88200.00",
"volume_native": "29.4",
"count": 210,
"percentage": 20.6
},
{
"asset": "SOL",
"volume_usd": "28350.00",
"volume_native": "283.5",
"count": 232,
"percentage": 6.6
}
],
"total_volume_usd": "428950.00"
}
}