curl --request GET \
--url https://dev.cashweb.cash/api/v1/partner/revenue \
--header 'X-API-KEY: <api-key>'{
"data": {
"data": [
{
"amount": "161500.00",
"crypto_amount": "100.00",
"crypto_currency": "usdt",
"merchant_id": "mrc_001",
"merchant_reference": "order-4551",
"network": "trc20",
"platform_fee": "100.00",
"share": "50.00",
"terminal_id": "term_01",
"transaction_id": "01917f00-7b4c-7f56-8a2b-15998d58c9f3",
"ts": "2026-02-12T12:05:00Z"
}
],
"has_more": false,
"limit": 20,
"next_cursor": null,
"summary": {
"from": "2026-02-01T00:00:00Z",
"to": "2026-02-12T23:59:59Z",
"total_partner_share": "50.00",
"transaction_count": 1
}
},
"success": true
}Returns partner-scoped revenue rows for reconciliation and reporting. Use from/to windows and cursor pagination for deterministic backfills. Optionally request summary totals with include_summary=true.
curl --request GET \
--url https://dev.cashweb.cash/api/v1/partner/revenue \
--header 'X-API-KEY: <api-key>'{
"data": {
"data": [
{
"amount": "161500.00",
"crypto_amount": "100.00",
"crypto_currency": "usdt",
"merchant_id": "mrc_001",
"merchant_reference": "order-4551",
"network": "trc20",
"platform_fee": "100.00",
"share": "50.00",
"terminal_id": "term_01",
"transaction_id": "01917f00-7b4c-7f56-8a2b-15998d58c9f3",
"ts": "2026-02-12T12:05:00Z"
}
],
"has_more": false,
"limit": 20,
"next_cursor": null,
"summary": {
"from": "2026-02-01T00:00:00Z",
"to": "2026-02-12T23:59:59Z",
"total_partner_share": "50.00",
"transaction_count": 1
}
},
"success": true
}Inclusive start time in RFC3339.
Inclusive end time in RFC3339.
Optional token filter.
Optional network filter.
Include aggregate totals for the selected window.
Opaque cursor returned by the previous response.
Requested page size.
1 <= x <= 100Revenue ledger retrieved
Standard API response wrapper for all successful responses