Retrieve
Get network total
Retrieve a specific network total record by token. Not available in sandbox.
Path Parameters
Returns
Globally unique identifier.
RFC 3339 timestamp for when the record was created. UTC time zone.
3-character alphabetic ISO 4217 code.
The institution that activity occurred on. For Mastercard: ICA (Interbank Card Association). For Maestro: institution ID. For Visa: lowest level SRE (Settlement Reporting Entity).
Card network where the transaction took place. VISA, MASTERCARD, MAESTRO, or INTERLINK.
Date that the network total record applies to. YYYY-MM-DD format.
The institution responsible for settlement. For Mastercard: same as institution_id
. For Maestro: billing ICA. For Visa: Funds Transfer SRE (FTSRE).
Settlement service.
RFC 3339 timestamp for when the record was last updated. UTC time zone.
The clearing cycle that the network total record applies to. Mastercard only.
curl https://api.lithic.com/v1/reports/settlement/network_totals/$TOKEN \
-H "Authorization: $LITHIC_API_KEY"
{
"token": "12cf7505-06a8-435e-b1c7-4c430d02f6c3",
"amounts": {
"gross_settlement": 100,
"interchange_fees": -25,
"net_settlement": 85,
"visa_charges": 10
},
"created": "2025-02-25T13:07:31.419631Z",
"currency": "CAD",
"institution_id": "1000000000",
"network": "VISA",
"report_date": "2025-02-25",
"settlement_institution_id": "1000000001",
"settlement_service": "015",
"updated": "2025-02-25T13:07:31.419631Z",
"cycle": 0
}