> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cadanapay.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List remittances

> **Beta** — contact Cadana to enable access for your business.

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.




## OpenAPI

````yaml /openapi/statutory-compliance.yaml get /v1/statutory/remittances
openapi: 3.0.0
info:
  title: Statutory Compliance API
  version: 0.1.0
  description: Statutory filing, government remittance, and compliance tracking API
  termsOfService: https://cadanapay.com/terms-and-conditions
  contact:
    email: api@cadanapay.com
  license:
    name: Apache 2.0
    url: http://www.apache.org/licenses/LICENSE-2.0.html
servers:
  - url: https://api.cadanapay.com
    description: Prod Server
  - url: https://dev-api.cadanapay.com
    description: Dev Server
security:
  - Authorization: []
tags:
  - name: Jurisdictions
    description: Discover supported countries, required fields, and filing types
  - name: Filings
    description: >-
      Create, submit, and track statutory returns — from upcoming obligations
      through acceptance
  - name: Remittances
    description: Government payments linked to filings
  - name: Requirements
    description: Prerequisites that must be satisfied before filing
  - name: Events
    description: Immutable audit trail
  - name: Statutory Fields
    description: Submit and read entity-level statutory filing data
paths:
  /v1/statutory/remittances:
    get:
      tags:
        - Remittances
      summary: List remittances
      description: |
        **Beta** — contact Cadana to enable access for your business.

        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.
      operationId: listRemittances
      parameters:
        - $ref: '#/components/parameters/XMultiTenantKey'
        - name: businessId
          in: query
          schema:
            type: string
          description: Filter by business
        - name: countryCode
          in: query
          schema:
            type: string
          description: Filter by jurisdiction (ISO 3166-1 alpha-2)
        - name: status
          in: query
          schema:
            type: string
            enum:
              - pending
              - processing
              - completed
              - failed
          description: Filter by remittance status
      responses:
        '200':
          description: List of remittances with summary
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/RemittanceListItem'
                  summary:
                    $ref: '#/components/schemas/RemittanceSummary'
components:
  parameters:
    XMultiTenantKey:
      name: X-MultiTenantKey
      in: header
      required: false
      schema:
        type: string
      description: >-
        Required when using a Platform API token. The tenant key identifying
        which business to operate on.
  schemas:
    RemittanceListItem:
      type: object
      description: |
        Reduced remittance entry returned in list responses. Use
        `GET /v1/statutory/remittances/{id}` for full details.
      properties:
        id:
          type: string
          example: rem_01HQ3K4N7XYZABC
        businessId:
          type: string
        countryCode:
          type: string
          example: MX
        authorityName:
          type: string
          example: SAT
        status:
          type: string
          enum:
            - pending
            - processing
            - completed
            - failed
        amount:
          type: number
          format: decimal
          example: 45000
        createdAt:
          type: number
          format: epoch
          example: 1709280000
        updatedAt:
          type: number
          format: epoch
          example: 1709280000
    RemittanceSummary:
      type: object
      description: Status counts for the filtered set of remittances.
      properties:
        total:
          type: integer
        pending:
          type: integer
        processing:
          type: integer
        completed:
          type: integer
        failed:
          type: integer
  securitySchemes:
    Authorization:
      type: http
      scheme: bearer
      bearerFormat: API_SECRET_KEY

````