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

# List transactions

> Unified ledger of payment-route deposits. Optionally filter by `customerId`. Requires `api:read` scope.



## OpenAPI

````yaml /openapi.yaml get /transactions
openapi: 3.1.0
info:
  title: Remitflex API
  version: 1.0.0
  description: >
    Programmatic access to Remitflex payment routes, fiat rates, customers, and
    transactions.


    **Dashboard:** Create API keys at https://dashboard.remitflex.io


    **Authentication:** Send your API key as `Authorization: Bearer
    rmf_live_...` or `rmf_test_...`.


    **Idempotency:** Mutating requests (`POST`, `PUT`, `PATCH`, `DELETE`)
    require an `Idempotency-Key` header when authenticated with an API key.
servers:
  - url: http://localhost:4000/v1
    description: Local development
  - url: https://api.remitflex.io/v1
    description: Production
security:
  - ApiKeyAuth: []
paths:
  /transactions:
    get:
      tags:
        - Transactions
      summary: List transactions
      description: >-
        Unified ledger of payment-route deposits. Optionally filter by
        `customerId`. Requires `api:read` scope.
      operationId: listTransactions
      parameters:
        - $ref: '#/components/parameters/CustomerIdQuery'
      responses:
        '200':
          $ref: '#/components/responses/ListTransactions'
      security:
        - ApiKeyAuth: []
components:
  parameters:
    CustomerIdQuery:
      name: customerId
      in: query
      required: false
      description: Filter results to a single customer under your organisation.
      schema:
        type: string
        format: uuid
        example: a1b2c3d4-e5f6-7890-abcd-ef1234567890
  responses:
    ListTransactions:
      description: Unified transaction ledger
      content:
        application/json:
          schema:
            allOf:
              - $ref: '#/components/schemas/SuccessEnvelope'
              - type: object
                properties:
                  data:
                    type: object
                    properties:
                      transactions:
                        type: array
                        items:
                          $ref: '#/components/schemas/Transaction'
                      total:
                        type: integer
          examples:
            success:
              $ref: '#/components/examples/ListTransactionsResponse'
  schemas:
    SuccessEnvelope:
      type: object
      properties:
        status:
          type: string
          example: success
        message:
          type: string
        data:
          nullable: true
    Transaction:
      type: object
      properties:
        id:
          type: string
        kind:
          type: string
          enum:
            - payment_route
            - swap
            - collection
            - offramp
            - onramp
            - cngn_convert
            - cngn_withdrawal
            - cngn_payout
            - cngn_payin
            - cngn_deposit
        customerId:
          type: string
          format: uuid
          nullable: true
        customerName:
          type: string
        status:
          type: string
        destination:
          type: string
        amount:
          type: string
        amountUsd:
          type: string
          nullable: true
        createdAt:
          type: string
          format: date-time
        receipt:
          type: object
          additionalProperties: true
  examples:
    ListTransactionsResponse:
      value:
        status: success
        message: Transactions fetched
        data:
          transactions:
            - id: dep-uuid-001
              kind: payment_route
              customerId: a1b2c3d4-e5f6-7890-abcd-ef1234567890
              customerName: Acme Ltd
              status: success
              destination: Base · USDC → 0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb
              amount: 250 USDT
              amountUsd: '250.00'
              createdAt: '2026-06-26T11:00:00.000Z'
              receipt:
                type: payment_route_deposit
                depositId: dep-uuid-001
                relayRequestId: req_abc123
                routeId: route-uuid-001
                routeName: Supplier collection
                status: success
                origin:
                  network: Tron
                  symbol: USDT
                  amount: '250'
                  amountUsd: '250.00'
                destination:
                  network: Base
                  symbol: USDC
                  address: '0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb'
                  amount: '250'
                  amountUsd: '250.00'
                depositTxHash: '0xabc123def4567890'
          total: 1
  securitySchemes:
    ApiKeyAuth:
      type: http
      scheme: bearer
      description: >
        API key created in the Remitflex Dashboard at dashboard.remitflex.io
        (`rmf_live_...` or `rmf_test_...`).

        Key management endpoints require a dashboard JWT and are not part of
        this reference.

````