Skip to main content
GET
/
api
/
analytics
/
overview
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
      }
    ]
  }
}
Authorization
string
required
Bearer token: Bearer YOUR_ACCESS_TOKEN
from
string
Start date for the reporting period. ISO 8601 format: 2026-03-01
to
string
End date for the reporting period. ISO 8601 format: 2026-03-31
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
      }
    ]
  }
}