> ## 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 wallet transactions

> Returns two arrays: **`items`** — the x-bridge transaction view; build against this. **Avoid `fineractItems`** (the raw core-engine transactions) **for now** — lean on `items`.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/wms/wallets/{walletId}/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:
  /v1/wms/wallets/{walletId}/transactions:
    get:
      tags:
        - Wallets
      summary: List wallet transactions
      description: >-
        Returns two arrays: **`items`** — the x-bridge transaction view; build
        against this. **Avoid `fineractItems`** (the raw core-engine
        transactions) **for now** — lean on `items`.
      parameters:
        - $ref: '#/components/parameters/WalletId'
      responses:
        '200':
          description: Wallet transactions
          content:
            application/json:
              schema:
                type: object
                properties:
                  items:
                    type: array
                    items:
                      $ref: '#/components/schemas/WalletTransaction'
                  fineractItems:
                    type: array
                    deprecated: true
                    items:
                      type: object
                    description: >-
                      Raw core-engine data — build against `items`; avoid
                      `fineractItems` for now.
              example:
                items:
                  - id: 3a5e87bb-f073-43c5-a77c-b87e394305fe
                    walletId: f029d5af-2dae-4c27-ae86-993e362949ab
                    type: topup
                    status: completed
                    amount: '1000.00'
                    currency: TZS
                    reference: COL-738609d8-db35-4329-83e7-360cdd15d83c
                    externalId: '3'
                    description: Mobile money deposit
                    createdAt: '2026-05-21T11:29:52.656Z'
                fineractItems:
                  - id: 3
                    entryType: CREDIT
                    amount: 1000
                    runningBalance: 1000
                    transactionType:
                      value: Deposit
                      deposit: true
                    currency:
                      code: TZS
                    date:
                      - 2026
                      - 5
                      - 21
                    reversed: false
components:
  parameters:
    WalletId:
      name: walletId
      in: path
      required: true
      schema:
        type: string
        format: uuid
  schemas:
    WalletTransaction:
      type: object
      description: An x-bridge wallet transaction (the `items` view).
      properties:
        id:
          type: string
          format: uuid
          description: x-bridge transaction id.
        walletId:
          type: string
          format: uuid
        type:
          type: string
          description: Transaction type, e.g. topup, payout, transfer, reserve, release.
          example: topup
        status:
          type: string
          description: completed | pending | failed.
          example: completed
        amount:
          type: string
          example: '1000.00'
        currency:
          type: string
          example: TZS
        reference:
          type: string
          description: >-
            Your reference / idempotency key (e.g. the originating collection or
            deposit reference).
          nullable: true
        externalId:
          type: string
          description: Underlying core-engine transaction id.
          nullable: true
        description:
          type: string
          nullable: true
        createdAt:
          type: string
          format: date-time
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        Bearer token from POST /generate-token. Expires ~1h; on 401, re-generate
        and retry once.

````