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

# Get user transactions (v3)

> Get all Kamino Lend transactions for a given user in a market, including withdraw-queue transactions.



## OpenAPI

````yaml /kamino-api.json get /v3/kamino-market/{marketPubkey}/users/{userPubkey}/transactions
openapi: 3.1.0
info:
  version: 1.0.0
  title: Kamino Public API
  description: >
    The Kamino API provides a comprehensive way to interact with Kamino without
    reading directly from the blockchain.


    The API also provides the ability to fetch data that might not be available
    from just reading the chain.


    The API is rate-limited for unauthenticated users. If you feel you need to
    make more requests or run into rate-limit issues, please reach out.
servers:
  - url: https://api.kamino.finance
security: []
paths:
  /v3/kamino-market/{marketPubkey}/users/{userPubkey}/transactions:
    get:
      tags:
        - Kamino Lend Transactions
      summary: Get user transactions (v3)
      description: >-
        Get all Kamino Lend transactions for a given user in a market, including
        withdraw-queue transactions.
      parameters:
        - schema:
            allOf:
              - $ref: '#/components/schemas/AddressBase58'
              - description: Kamino Lend market public key
                example: 7u3HeHxYDLhnCoErrtycNokbQYbWGzLs6JSDqGAv5PfF
          required: true
          description: Kamino Lend market public key
          name: marketPubkey
          in: path
        - schema:
            allOf:
              - $ref: '#/components/schemas/AddressBase58'
              - description: User wallet public key
                example: AcNSmd5CxwLs21TYUmhWt7CW2v159TdYRkvQxb1iBYRj
          required: true
          description: User wallet public key
          name: userPubkey
          in: path
        - schema:
            type: string
            enum:
              - mainnet-beta
              - devnet
              - localnet
            default: mainnet-beta
            description: Solana cluster environment
            example: mainnet-beta
          required: false
          description: Solana cluster environment
          name: env
          in: query
        - schema:
            type: string
            enum:
              - asc
              - desc
            default: asc
            description: Sort order (asc for oldest first, desc for newest first)
            example: desc
          required: false
          description: Sort order (asc for oldest first, desc for newest first)
          name: sort
          in: query
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/KlendUserTransactionsResponseV3'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    AddressBase58:
      type: string
      description: Valid base58-encoded address
      example: VEG1EMtttdHunMbSza8uoms1R18VXmYSph2bBpHcSJd
    KlendUserTransactionsResponseV3:
      type: object
      properties:
        obligations:
          $ref: '#/components/schemas/KlendUserObligationsMapV3'
        withdrawQueueTransactions:
          type: array
          items:
            $ref: '#/components/schemas/KlendWithdrawQueueTransactionV3'
      required:
        - obligations
        - withdrawQueueTransactions
    Error:
      type: object
      properties:
        error:
          type: string
          description: Error message for internal server failure
          example: An internal error occurred
      required:
        - error
      description: Internal server error response (500)
      example:
        error: An internal error occurred
    KlendUserObligationsMapV3:
      type: object
      additionalProperties:
        type: array
        items:
          $ref: '#/components/schemas/KlendTransactionUserResponseV3'
    KlendWithdrawQueueTransactionV3:
      type: object
      properties:
        createdOn:
          type:
            - string
            - 'null'
          format: date
        timestamp:
          type: number
        transactionSignature:
          type: string
        transactionName:
          type: string
        transactionDisplayName:
          type: string
        reserve:
          $ref: '#/components/schemas/AddressBase58'
        withdrawTicket:
          $ref: '#/components/schemas/AddressBase58'
        solPrice:
          $ref: '#/components/schemas/Decimal'
        liquidityToken:
          type: string
        liquidityTokenMint:
          $ref: '#/components/schemas/AddressBase58'
        liquidityTokenAmount:
          $ref: '#/components/schemas/Decimal'
        liquidityTokenPrice:
          $ref: '#/components/schemas/Decimal'
        liquidityUsdValue:
          $ref: '#/components/schemas/Decimal'
      required:
        - createdOn
        - timestamp
        - transactionSignature
        - transactionName
        - transactionDisplayName
        - reserve
        - withdrawTicket
        - solPrice
        - liquidityToken
        - liquidityTokenMint
        - liquidityTokenAmount
        - liquidityTokenPrice
        - liquidityUsdValue
    KlendTransactionUserResponseV3:
      type: object
      properties:
        createdOn:
          type: string
          format: date-time
        timestamp:
          type: number
        transactionSignature:
          type: string
        transactionName:
          type: string
        liquidityToken:
          type: string
        liquidityTokenMint:
          $ref: '#/components/schemas/AddressBase58'
        liquidityTokenAmount:
          $ref: '#/components/schemas/Decimal'
        liquidityTokenPrice:
          $ref: '#/components/schemas/Decimal'
        solPrice:
          $ref: '#/components/schemas/Decimal'
        liquidityUsdValue:
          $ref: '#/components/schemas/Decimal'
        isLiquidationWithdrawal:
          type: boolean
        obligationType:
          type: string
        transactionDisplayName:
          type: string
        isSecondPartOfCompositeIx:
          type: boolean
      required:
        - createdOn
        - timestamp
        - transactionSignature
        - transactionName
        - liquidityToken
        - liquidityTokenMint
        - liquidityTokenAmount
        - isLiquidationWithdrawal
        - obligationType
        - transactionDisplayName
    Decimal:
      type: string
      description: Decimal value represented as string
      example: '1234.56789'

````