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

# Get latest transactions for a user

> Get the latest transactions for a user by username.
- **username**: The username to query
- **page_after**: (optional) Pagination cursor
Returns a list of transactions and pagination info.



## OpenAPI

````yaml /api-reference/krypton_backend.json get /api/v1/latest_transactions_by_username/{username}
openapi: 3.1.0
info:
  title: Krypton API
  description: >-
    API documentation for Krypton backend. This API allows user authentication,
    wallet management, USDC transfers, transaction history via Circle and
    Firestore, and marketplace management.
  version: 1.0.0
servers:
  - url: https://api.kryptonfund.com
    description: Production API
  - url: http://127.0.0.1:8000
    description: Local API
security: []
tags:
  - name: wallet
    description: Wallet management, authentication, and USDC transfer endpoints.
  - name: marketplace
    description: Marketplace management endpoints for startups and categories.
  - name: hedge-fund
    description: Hedge fund questionnaire submission and management endpoints.
  - name: smarttoken
    description: Smart Token management endpoints for businesses.
  - name: onramp
    description: Onramp data logging and analytics endpoints for Transak and Coinbase APIs.
  - name: strategy
    description: >-
      Unified strategy endpoints for MAVC, MAVP, and MAVC_YEARN vaults with
      standardized function names.
  - name: website
    description: Website-related endpoints including waitlist submission.
paths:
  /api/v1/latest_transactions_by_username/{username}:
    get:
      tags:
        - wallet
      summary: Get latest transactions for a user
      description: |-
        Get the latest transactions for a user by username.
        - **username**: The username to query
        - **page_after**: (optional) Pagination cursor
        Returns a list of transactions and pagination info.
      operationId: >-
        latest_transactions_by_username_api_v1_latest_transactions_by_username__username__get
      parameters:
        - name: username
          in: path
          required: true
          schema:
            type: string
            title: Username
        - name: page_after
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Page After
      responses:
        '200':
          description: List of latest transactions and pagination info
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
                title: >-
                  Response Latest Transactions By Username Api V1 Latest
                  Transactions By Username  Username  Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````