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

# List Wallet Transactions

> List Billing Transactions

<script src="/locale-bridge.js" />


## OpenAPI

````yaml /openapi.en.json GET /v1/public/accounts/{account_id}/billing/transactions
openapi: 3.1.0
info:
  title: Code API (Public)
  version: 1.0.0
servers:
  - url: https://api.hybridbox.io
security: []
paths:
  /v1/public/accounts/{account_id}/billing/transactions:
    get:
      tags:
        - public-accounts
        - public-billing
      summary: List Billing Transactions
      description: List account wallet transactions using a simplified public DTO.
      operationId: >-
        list_public_billing_transactions_v1_public_accounts__account_id__billing_transactions_get
      parameters:
        - in: path
          name: account_id
          required: true
          schema:
            format: uuid
            title: Account Id
            type: string
        - in: query
          name: page
          required: false
          schema:
            default: 1
            title: Page
            type: integer
        - in: query
          name: page_size
          required: false
          schema:
            default: 25
            title: Page Size
            type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicWalletTransactionHistoryResponse'
          description: ''
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
      security:
        - PublicBearerAuth: []
components:
  schemas:
    PublicWalletTransactionHistoryResponse:
      properties:
        items:
          description: Wallet transactions on this page
          items:
            $ref: '#/components/schemas/PublicWalletTransactionResponse'
          title: Items
          type: array
        page:
          description: Current one-based page number
          title: Page
          type: integer
        page_size:
          description: Maximum items per page
          title: Page Size
          type: integer
        total:
          description: Total matching wallet transactions
          title: Total
          type: integer
      required:
        - page
        - page_size
        - total
      title: PublicWalletTransactionHistoryResponse
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    PublicWalletTransactionResponse:
      description: Public wallet transaction history entry with customer-facing fields.
      properties:
        amount:
          description: Transaction amount
          pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
          title: Amount
          type: string
        balance_after:
          anyOf:
            - pattern: ^(?!^[-+.]*$)[+-]?0*\d*\.?\d*$
              type: string
            - type: 'null'
          description: Wallet balance after the transaction
          title: Balance After
        currency:
          description: Wallet currency code
          title: Currency
          type: string
        description:
          anyOf:
            - type: string
            - type: 'null'
          description: Transaction description
          title: Description
        direction:
          description: Transaction direction
          title: Direction
          type: string
        effective_at:
          description: Transaction effective timestamp
          format: date-time
          title: Effective At
          type: string
        status:
          description: Wallet transaction status
          title: Status
          type: string
        transaction_id:
          description: Wallet transaction UUID
          format: uuid
          title: Transaction Id
          type: string
        type:
          description: Wallet transaction type
          title: Type
          type: string
      required:
        - transaction_id
        - type
        - status
        - effective_at
        - amount
        - direction
        - currency
      title: PublicWalletTransactionResponse
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object
  securitySchemes:
    PublicBearerAuth:
      bearerFormat: JWT or Hybridbox Service account token
      description: >-
        Public API bearer credential sent as `Authorization: Bearer <token>`.
        Use either an OAuth access token or a Hybridbox Service account token.
      scheme: bearer
      type: http

````