curl -X GET 'https://crypto-api.yativo.com/api/v1/analytics/dashboard-analytics' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
"data": {
"totalAccountValue": 2.47,
"depositTransactions": [],
"chartTransactions": [
{"_id": {"year": 2026, "month": 1}, "totalAmount": 0, "count": 117},
{"_id": {"year": 2026, "month": 2}, "totalAmount": 0, "count": 304},
{"_id": {"year": 2026, "month": 3}, "totalAmount": 0, "count": 345}
],
"chartUsers": [
{"_id": {"year": 2026, "month": 1}, "count": 4},
{"_id": {"year": 2026, "month": 2}, "count": 3},
{"_id": {"year": 2026, "month": 3}, "count": 2}
]
},
"status": true,
"message": "Analytics Listed Successfully"
}
Analytics
Analytics Overview
Get dashboard analytics including total account value, transaction volume chart, and user growth.
GET
/
v1
/
analytics
/
dashboard-analytics
curl -X GET 'https://crypto-api.yativo.com/api/v1/analytics/dashboard-analytics' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
"data": {
"totalAccountValue": 2.47,
"depositTransactions": [],
"chartTransactions": [
{"_id": {"year": 2026, "month": 1}, "totalAmount": 0, "count": 117},
{"_id": {"year": 2026, "month": 2}, "totalAmount": 0, "count": 304},
{"_id": {"year": 2026, "month": 3}, "totalAmount": 0, "count": 345}
],
"chartUsers": [
{"_id": {"year": 2026, "month": 1}, "count": 4},
{"_id": {"year": 2026, "month": 2}, "count": 3},
{"_id": {"year": 2026, "month": 3}, "count": 2}
]
},
"status": true,
"message": "Analytics Listed Successfully"
}
Bearer token:
Bearer YOUR_ACCESS_TOKENStart date for the reporting period. ISO 8601 format:
2026-03-01End date for the reporting period. ISO 8601 format:
2026-03-31Response Type Definitions
Response Type Definitions
interface AnalyticsOverviewResponse {
data: {
totalAccountValue: number;
depositTransactions: any[];
chartTransactions: Array<{
_id: { year: number; month: number };
totalAmount: number;
count: number;
}>;
chartUsers: Array<{
_id: { year: number; month: number };
count: number;
}>;
};
status: boolean;
message: string;
}
curl -X GET 'https://crypto-api.yativo.com/api/v1/analytics/dashboard-analytics' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
"data": {
"totalAccountValue": 2.47,
"depositTransactions": [],
"chartTransactions": [
{"_id": {"year": 2026, "month": 1}, "totalAmount": 0, "count": 117},
{"_id": {"year": 2026, "month": 2}, "totalAmount": 0, "count": 304},
{"_id": {"year": 2026, "month": 3}, "totalAmount": 0, "count": 345}
],
"chartUsers": [
{"_id": {"year": 2026, "month": 1}, "count": 4},
{"_id": {"year": 2026, "month": 2}, "count": 3},
{"_id": {"year": 2026, "month": 3}, "count": 2}
]
},
"status": true,
"message": "Analytics Listed Successfully"
}
⌘I

