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

# List collection transactions

> Paginated, newest first.



## OpenAPI

````yaml /api-reference/openapi.json get /collection/transactions
openapi: 3.1.0
info:
  title: Bridge API
  version: 1.0.0
  description: >-
    Bridge is Banking-as-a-Service: launch wallets, lending, and payment
    collections while a bank/FSP retains custody and compliance. This reference
    covers the production-proven surface. Get a `keyId`/`secret` from the
    Dashboard, exchange them at `/generate-token` for a 1-hour Bearer token,
    then call the product APIs.


    **Auth recovery:** tokens expire after ~1h. On a 401, re-call
    `/generate-token` and retry once.
servers:
  - url: https://{baasHost}/api
    description: BaaS core (KYC, Lending, Wallets)
    variables:
      baasHost:
        default: services.finance.reli.co.tz
  - url: https://{gatewayHost}/api
    description: >-
      Collections gateway (payment collection) — a separate service and key from
      the BaaS core.
    variables:
      gatewayHost:
        default: bridge-fsp.usereli.tech
security:
  - bearerAuth: []
tags:
  - name: Auth
    description: Exchange API keys for a Bearer token.
  - name: KYC
    description: Customers and identity. KYC is the authoritative customer store.
  - name: Lending
    description: Loan products, origination, schedules, and repayments.
  - name: Wallets
    description: Stored-value wallets, deposits, and escrow.
  - name: Collections
    description: Mobile (USSD) payment collection. Separate service + key.
paths:
  /collection/transactions:
    get:
      tags:
        - Collections
      summary: List collection transactions
      description: Paginated, newest first.
      parameters:
        - name: page
          in: query
          schema:
            type: integer
            default: 1
        - name: limit
          in: query
          schema:
            type: integer
            default: 10
      responses:
        '200':
          description: Collection transactions
          content:
            application/json:
              example:
                data:
                  - id: afc38122-5595-4621-b550-2608ec6acf4f
                    transactionId: ORDER_12345
                    fspId: CLICKPESA
                    amount: '1000.00'
                    currency: TZS
                    collectionMethod: USSD_PUSH
                    status: PENDING
                    orderReference: MMOCMNPDQP1Y61
                    collectedAmount: '0.00'
                    fspFee: '0.00'
                    createdAt: '2026-04-24T08:07:17.823Z'
                total: 42
                page: 1
                limit: 10
                totalPages: 5
      servers:
        - url: https://{gatewayHost}/api
          variables:
            gatewayHost:
              default: bridge-fsp.usereli.tech
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        Bearer token from POST /generate-token. Expires ~1h; on 401, re-generate
        and retry once.

````