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

# List Transactions

Retrieve the immutable ledger of all financial transactions (`CREDIT`, `DEBIT`, `REFUND`, `REVERSAL`) for a specific agency.


## OpenAPI

````yaml GET /agency/wallet/transactions
openapi: 3.0.3
info:
  title: Travomatrix B2B Travel API
  version: 1.0.0
  description: >
    Travomatrix is a high-performance multi-vertical travel booking engine
    designed for B2B enterprises.


    ### Verticals Supported

    - **Flights**: Unified interface for global GDS and NDC providers.

    - **Hotels**: Coming Soon.

    - **Rail**: Coming Soon.

    - **Cabs**: Coming Soon.


    ### Key Security & Reliability Headers

    - **X-API-Key**: Your primary server-to-server API key.

    - **Idempotency-Key**: Required for financial operations. Prevents duplicate
    actions on retries.

    - **X-Request-ID**: Optional but recommended. Used for tracing requests
    through the Travomatrix infrastructure.
servers:
  - url: https://api.travomatrix.com/api/v1
    description: Production Environment
  - url: http://uat.travomatrix.com/api/v1
    description: UAT Environment
  - url: http://localhost:80/api/v1
    description: Localhost (Port 80)
  - url: http://localhost:8080/api/v1
    description: Localhost (Port 8080)
security: []
paths:
  /agency/wallet/transactions:
    get:
      tags:
        - Platform - Agency
      summary: List Transactions
      parameters:
        - in: query
          name: agent_id
          required: true
          schema:
            type: string
      responses:
        '200':
          description: List of wallet transactions
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/WalletTransaction'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    WalletTransaction:
      type: object
      properties:
        id:
          type: string
        agent_id:
          type: string
        booking_id:
          type: string
        type:
          type: string
          enum:
            - CREDIT
            - DEBIT
            - REFUND
            - REVERSAL
        amount_paise:
          type: integer
        balance_after:
          type: integer
        created_at:
          type: string
          format: date-time
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key

````