Time to read: 1 min
完全なドキュメント索引については llms.txt
Liquidity Provider Financial Reports
Overview
The Liquidity Provider Server provides financial reporting endpoints to monitor operations, track profitability, and analyze capital allocation. All reports are available through the Management UI (Reports section) or via API.
Common Conventions:
- All amounts are in wei (1 BTC/RBTC = 10^18 wei, 1 satoshi = 10^10 wei)
- Date parameters accept YYYY-MM-DD format (expands to full day) or ISO 8601 format (YYYY-MM-DDTHH:mm:ssZ)
- All endpoints require Management API authentication
- Amounts are returned as strings to preserve precision
Dashboard Summary
Endpoint: GET /reports/summaries
Parameters:
startDate(required): Start date for the report periodendDate(required): End date for the report period
Purpose: Aggregate statistics for both pegin and pegout operations during a time period.
Response Structure
{
"peginSummary": {
"totalQuotesCount": 100,
"acceptedQuotesCount": 85,
"totalAcceptedQuotesAmount": "8500000000000000000",
"paidQuotesCount": 75,
"paidQuotesAmount": "7500000000000000000",
"refundedQuotesCount": 70,
"totalRefundedQuotesAmount": "7000000000000000000",
"penalizationsCount": 5,
"totalPenalizationsAmount": "500000000000000000"
},
"pegoutSummary": {
"totalQuotesCount": 150,
"acceptedQuotesCount": 120,
"totalAcceptedQuotesAmount": "12000000000000000000",
"paidQuotesCount": 110,
"paidQuotesAmount": "11000000000000000000",
"refundedQuotesCount": 100,
"totalRefundedQuotesAmount": "10000000000000000000",
"penalizationsCount": 10,
"totalPenalizationsAmount": "1000000000000000000"
}
}