curl --request GET \
--url https://api.lightspark.com/grid/2025-10-13/fee-rules/report \
--header 'Authorization: Basic <encoded-value>'{
"month": "2026-02",
"totalPlatformFeesCollected": 128450,
"currency": "USD",
"lines": [
{
"transactionType": "TRANSFER_OUT",
"transactionCount": 245,
"platformFeesCollected": 62500,
"currency": "USD"
},
{
"transactionType": "CROSS_BORDER_PAYOUT",
"transactionCount": 97,
"platformFeesCollected": 51300,
"currency": "USD"
},
{
"transactionType": "RAMP_OFF",
"transactionCount": 58,
"platformFeesCollected": 14650,
"currency": "USD"
}
]
}Retrieve an aggregated summary of platform fees collected during a specific month, broken down by transaction type. Covers only transaction-based fees that were collected in real time during settlement.
The report includes the total fees collected and a per-transaction-type breakdown with transaction counts.
curl --request GET \
--url https://api.lightspark.com/grid/2025-10-13/fee-rules/report \
--header 'Authorization: Basic <encoded-value>'{
"month": "2026-02",
"totalPlatformFeesCollected": 128450,
"currency": "USD",
"lines": [
{
"transactionType": "TRANSFER_OUT",
"transactionCount": 245,
"platformFeesCollected": 62500,
"currency": "USD"
},
{
"transactionType": "CROSS_BORDER_PAYOUT",
"transactionCount": 97,
"platformFeesCollected": 51300,
"currency": "USD"
},
{
"transactionType": "RAMP_OFF",
"transactionCount": 58,
"platformFeesCollected": 14650,
"currency": "USD"
}
]
}API token authentication using format <api token id>:<api client secret>
Reporting month in YYYY-MM format. Defaults to the current month.
^\d{4}-\d{2}$"2026-02"
Successful operation
Monthly summary of platform fee revenue, broken down by transaction type. Covers fees collected in real time during transaction settlement within the specified month.
Reporting month in YYYY-MM format.
^\d{4}-\d{2}$"2026-02"
Total platform fees collected across all transaction types in the smallest unit of the reporting currency (USD cents).
x >= 0128450
ISO 4217 currency code for the reporting currency. Currently always USD.
"USD"
Per-transaction-type breakdown of collected fees
Show child attributes
Was this page helpful?