curl --request GET \
--url https://api.cadanapay.com/v1/statutory/remittances \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "rem_01HQ3K4N7XYZABC",
"businessId": "<string>",
"countryCode": "MX",
"authorityName": "SAT",
"status": "pending",
"amount": 45000,
"createdAt": 1709280000,
"updatedAt": 1709280000
}
],
"summary": {
"total": 123,
"pending": 123,
"processing": 123,
"completed": 123,
"failed": 123
}
}Returns government payments across jurisdictions for a business. Each remittance is linked to one or more filings and tracks the actual money movement to the government authority.
The response includes a summary object with counts by status.
curl --request GET \
--url https://api.cadanapay.com/v1/statutory/remittances \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "rem_01HQ3K4N7XYZABC",
"businessId": "<string>",
"countryCode": "MX",
"authorityName": "SAT",
"status": "pending",
"amount": 45000,
"createdAt": 1709280000,
"updatedAt": 1709280000
}
],
"summary": {
"total": 123,
"pending": 123,
"processing": 123,
"completed": 123,
"failed": 123
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Filter by business
Filter by jurisdiction (ISO 3166-1 alpha-2)
Filter by remittance status
pending, processing, completed, failed