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

# Get transaction history for current user

> Deprecated: use GET /v2/ledger/transactions for stable opaque cursor pagination.



## OpenAPI

````yaml /openapi.json get /v1/ledger/transactions
openapi: 3.0.0
info:
  contact: {}
  description: >-
    Comprehensive payment platform API supporting fiat and crypto payments,
    currency conversion, and compliance management
  title: Zuba Payment Platform API
  version: '1.0'
servers: []
security: []
tags:
  - description: Manage M2M API keys and credentials
    name: API Keys
  - description: Internal ledger accounts and transactions
    name: Ledger
  - description: Handle incoming payments and deposits
    name: Pay-ins
  - description: Manage payouts, beneficiaries, and SEPA transfers
    name: Payouts
  - description: Manage outbound webhook endpoints and deliveries
    name: Webhooks
paths:
  /v1/ledger/transactions:
    get:
      tags:
        - Ledger
      summary: Get transaction history for current user
      description: >-
        Deprecated: use GET /v2/ledger/transactions for stable opaque cursor
        pagination.
      operationId: LedgerController_getUserTransactions
      parameters:
        - description: Filter transactions by currency code (ISO 4217, optional)
          in: query
          name: currency
          required: false
          schema:
            example: EUR
            type: string
        - description: Maximum number of transactions to return (1-500)
          in: query
          name: limit
          required: false
          schema:
            example: 100
            maximum: 500
            minimum: 1
            type: number
        - description: Number of transactions to skip for pagination
          in: query
          name: offset
          required: false
          schema:
            example: 0
            minimum: 0
            type: number
      responses:
        '200':
          description: Transaction history retrieved successfully with pagination details
        '400':
          description: Bad request - invalid limit or offset values
        '401':
          description: Unauthorized - missing or invalid JWT token
        '500':
          description: Internal Server Error
      deprecated: true
      security:
        - bearer: []
components:
  securitySchemes:
    bearer:
      bearerFormat: JWT
      description: Enter Auth0 JWT token
      scheme: bearer
      type: http

````