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

# List transactions

> Lists the association's transaction records, newest first. Every
accepted payment submission creates one; its id is the
`transactionRecordId` returned in the 202 response.




## OpenAPI

````yaml /api-reference/openapi.yaml get /transactions
openapi: 3.1.0
info:
  title: Zeam API Gateway
  version: 1.0.0
  description: >
    The Zeam API Gateway is the single, REST-based external surface for
    registered

    integrators. Every protected request carries a bearer access token (issued
    by the

    Zeam Auth Service) and the application secret header `x-zeam-auth`. The
    gateway

    verifies the token and resolves the caller's association server-side — you
    do not

    need to supply an association id header. Errors use RFC 7807

    `application/problem+json`.
  license:
    name: Proprietary
    url: https://zeam.app
  contact:
    name: Zeam Platform Team
    url: https://zeam.app
servers:
  - url: https://api.zeam.money/gw/v1
    description: >-
      Zeam API Gateway. The sandbox and production environments share this base
      URL; your application's registration determines which one a request runs
      in.
security:
  - BearerAuth: []
    ZeamAuth: []
tags:
  - name: Auth
    description: Public token issuance.
  - name: Wallets
    description: Association wallets with embedded balances.
  - name: Assets
    description: Platform asset registry.
  - name: Beneficiaries
    description: Association beneficiaries and their payment destinations.
  - name: Connectors
    description: Connector discovery (Connect, surfaced as REST).
  - name: Quotes
    description: Off-ramp quotes.
  - name: Payments
    description: >-
      P2P transfers, swaps, and off-ramp cash-outs, plus the compliance
      reference lookups used when building an off-ramp.
  - name: Transactions
    description: Transaction records, the polling and history complement to webhooks.
  - name: Webhooks
    description: Association webhook registrations.
paths:
  /transactions:
    get:
      tags:
        - Transactions
      summary: List transactions
      description: |
        Lists the association's transaction records, newest first. Every
        accepted payment submission creates one; its id is the
        `transactionRecordId` returned in the 202 response.
      operationId: listTransactions
      parameters:
        - name: status
          in: query
          required: false
          description: >-
            Filter by lifecycle status (e.g. completed, failed,
            refund_completed).
          schema:
            type: string
        - name: startDate
          in: query
          required: false
          description: Only records created on or after this time (RFC 3339 or YYYY-MM-DD).
          schema:
            type: string
        - name: endDate
          in: query
          required: false
          description: >-
            Only records created on or before this time (RFC 3339 or
            YYYY-MM-DD).
          schema:
            type: string
        - $ref: '#/components/parameters/Limit'
        - $ref: '#/components/parameters/Cursor'
      responses:
        '200':
          description: A page of transaction records.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TransactionPage'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '502':
          $ref: '#/components/responses/UpstreamError'
components:
  parameters:
    Limit:
      name: limit
      in: query
      required: false
      description: Maximum items per page.
      schema:
        type: integer
        default: 20
        minimum: 1
        maximum: 100
    Cursor:
      name: cursor
      in: query
      required: false
      description: Opaque pagination cursor from a previous response.
      schema:
        type: string
  schemas:
    TransactionPage:
      type: object
      required:
        - data
        - pagination
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/TransactionRecord'
        pagination:
          $ref: '#/components/schemas/Pagination'
    TransactionRecord:
      type: object
      required:
        - transactionRecordId
        - status
      description: >
        A transaction record. `sendAmount`/`sendCurrency` are the
        settlement-side

        figures (off-ramps may restate them in the connector settlement

        currency); `originalSendAmount` is the amount actually debited,

        denominated in `sendingAsset`.
      properties:
        transactionRecordId:
          type: string
          format: uuid
        idempotencyKey:
          type: string
        type:
          type: string
          description: Transaction type, e.g. p2p, swap, offramp.
        status:
          type: string
          description: >-
            Lifecycle status, e.g. initiated, completed, failed,
            refund_completed.
        failureReason:
          type: string
        errorCode:
          type: string
        sendAmount:
          type: number
        originalSendAmount:
          type: number
        sendCurrency:
          type: string
        receiveAmount:
          type: number
        receiveCurrency:
          type: string
        fee:
          type: number
        feeCurrency:
          type: string
        exchangeRate:
          type: number
        sendingAsset:
          type: string
        walletPublicKey:
          type: string
        isP2pTransfer:
          type: boolean
        destinationStellarAddress:
          type: string
        beneficiaryId:
          type: string
          format: uuid
        beneficiaryFirstName:
          type: string
        beneficiaryLastName:
          type: string
        connectorId:
          type: string
        connectorName:
          type: string
        method:
          type: string
        destinationCountryIso:
          type: string
        quoteId:
          type: string
        stellarTxHash:
          type: string
          description: Set once the transaction is on-chain.
        externalReference:
          type: string
        intentId:
          type: string
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
        completedAt:
          type: string
          format: date-time
          description: Set on terminal success.
    Pagination:
      type: object
      required:
        - nextCursor
        - hasMore
      properties:
        nextCursor:
          type:
            - string
            - 'null'
          description: Cursor for the next page, or null at the end.
        hasMore:
          type: boolean
    Problem:
      type: object
      required:
        - type
        - title
        - status
      description: RFC 7807 problem details.
      properties:
        type:
          type: string
          format: uri
          example: https://errors.zeam.app/validation-error
        title:
          type: string
          example: Validation Error
        status:
          type: integer
          example: 422
        detail:
          type: string
          example: The 'amount' field must be a positive decimal.
        instance:
          type: string
          example: /v1/quotes
        requestId:
          type: string
          example: 01J8Z6K3QW9F2
        errors:
          type: array
          items:
            type: object
            properties:
              field:
                type: string
              message:
                type: string
  responses:
    BadRequest:
      description: Malformed request.
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/Problem'
    Unauthorized:
      description: Missing or invalid authentication.
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/Problem'
    Forbidden:
      description: Authenticated but not permitted.
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/Problem'
    UpstreamError:
      description: A downstream service returned an unexpected error.
      content:
        application/problem+json:
          schema:
            $ref: '#/components/schemas/Problem'
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Access token issued by POST /v1/auth/token.
    ZeamAuth:
      type: apiKey
      in: header
      name: x-zeam-auth
      description: >-
        Application secret (the apiKey issued at registration), validated at the
        Kong edge.

````