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

# List all transactions across every account of the authenticated integrator

> Returns transactions across all accounts owned by the integrator, paginated and ordered (DESC by default).
Excludes transactions with `created` status.



## OpenAPI

````yaml /api-reference/openapi-integrator.json get /v1/query/get-all-transactions
openapi: 3.0.3
info:
  title: Byzantine Integrator API
  description: Byzantine REST API for integrators.
  license:
    name: ''
  version: 0.2.0
servers:
  - url: https://sandbox.api.byzantine.fi
    description: Sandbox
security: []
tags:
  - name: API health
    description: Check API status.
  - name: Customer management
    description: Endpoints to create, update, and retrieve customer information.
  - name: Account management
    description: Endpoints to manage accounts, bank accounts, invitations, and user roles.
  - name: Products
    description: Endpoints to get data about products and vaults.
  - name: Transactions
    description: Endpoints to create and manage transactions.
  - name: OTP authentication
    description: Endpoints to initialize and manage user authentication with OTP.
  - name: Webhooks
    description: Integrator-managed outbound webhook subscriptions and delivery history.
paths:
  /v1/query/get-all-transactions:
    get:
      tags:
        - Transactions
      summary: >-
        List all transactions across every account of the authenticated
        integrator
      description: >-
        Returns transactions across all accounts owned by the integrator,
        paginated and ordered (DESC by default).

        Excludes transactions with `created` status.
      operationId: get_all_transactions
      parameters:
        - name: X-Pubkey
          in: header
          description: >-
            Integrator's ECDSA public key (P-256 curve, compressed SEC1 format).
            Example:
            0x038fedef7c12f93bbf342ad8943b7a825a3b41f61c9dc118b2c718efebabbf62fd
          required: true
          schema:
            type: string
        - name: X-Timestamp
          in: header
          description: >-
            Unix timestamp in seconds (UTC). Must be within tolerance window (1
            minute) to prevent replay attacks. Example: 1760375826
          required: true
          schema:
            type: string
        - name: X-Signature
          in: header
          description: >-
            ECDSA signature (DER-encoded, hex with 0x prefix). Signs the
            message: {timestamp}{METHOD}{path_and_query}{json_body}. Example:
            0x3045022100...
          required: true
          schema:
            type: string
        - name: limit
          in: query
          description: Page size (max 100). Defaults to 20.
          required: false
          schema:
            type: integer
            format: int64
            nullable: true
        - name: offset
          in: query
          description: Number of records to skip. Defaults to 0.
          required: false
          schema:
            type: integer
            format: int64
            nullable: true
        - name: order
          in: query
          description: >-
            Sort order over the field `updatedAt`. `desc` (default) returns the
            most recently updated first;

            `asc` returns the oldest first. Combine with `offset` to paginate
            through every transaction.
          required: false
          schema:
            $ref: '#/components/schemas/SortOrder'
      responses:
        '200':
          description: Transactions retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetAllTransactionsResponse'
        '400':
          description: Bad request
        '500':
          description: Internal server error
      security:
        - integrator_auth: []
components:
  schemas:
    SortOrder:
      type: string
      description: Chronological sort direction over the field `updatedAt`.
      enum:
        - asc
        - desc
    GetAllTransactionsResponse:
      type: object
      required:
        - transactions
        - total
        - limit
        - offset
      properties:
        transactions:
          type: array
          items:
            $ref: '#/components/schemas/TransactionView'
        total:
          type: integer
          format: int64
          description: >-
            Total number of active transactions for this integrator across all
            accounts.
          example: 8753
        limit:
          type: integer
          format: int64
          description: Page size (max 100). Defaults to 20.
          example: 20
        offset:
          type: integer
          format: int64
          description: Number of records to skip. Defaults to 0.
          example: 0
    TransactionView:
      type: object
      description: Details of a transaction
      required:
        - transactionId
        - accountId
        - chainId
        - intermediaryAmount
        - type
        - status
        - createdAt
        - updatedAt
      properties:
        transactionId:
          $ref: '#/components/schemas/Uuid'
        accountId:
          $ref: '#/components/schemas/Uuid'
        chainId:
          type: integer
          format: int32
        vaultAddr:
          type: string
          nullable: true
        intermediaryAmount:
          $ref: '#/components/schemas/Decimal'
        type:
          $ref: '#/components/schemas/TransactionTypeView'
        status:
          $ref: '#/components/schemas/TransactionStatus'
        transactionHash:
          type: string
          nullable: true
        broadcastedAt:
          type: string
          format: date-time
          nullable: true
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
        sourceCurrency:
          allOf:
            - $ref: '#/components/schemas/Currency'
          nullable: true
        destinationCurrency:
          allOf:
            - $ref: '#/components/schemas/Currency'
          nullable: true
        sourceAmount:
          allOf:
            - $ref: '#/components/schemas/Decimal'
          nullable: true
        destinationAmount:
          allOf:
            - $ref: '#/components/schemas/Decimal'
          nullable: true
        relatedTransactionId:
          allOf:
            - $ref: '#/components/schemas/Uuid'
          nullable: true
    Uuid:
      type: string
      format: uuid
      description: A UUID string
      example: 550e8400-e29b-41d4-a716-446655440000
    Decimal:
      type: string
      description: A high-precision decimal number represented as a string
      example: '123.456789'
    TransactionTypeView:
      type: string
      description: Type of transaction returned by the API.
      enum:
        - onramp
        - deposit
        - onramp_deposit
        - withdraw
        - offramp
        - withdraw_offramp
        - authorization
        - approve
        - transfer
      example: deposit
    TransactionStatus:
      type: string
      description: The current status of the transaction.
      enum:
        - created
        - waiting_for_funds
        - funds_in_transfer
        - funds_received
        - processing
        - completed
        - simulation_failed
        - reverted
      example: completed
    Currency:
      type: string
      enum:
        - usd
        - eur
        - usdc
        - eurc
  securitySchemes:
    integrator_auth:
      type: apiKey
      in: header
      name: X-Pubkey, X-Timestamp, X-Signature

````