> ## 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.

# Send USDC to another user

> Send USDC from one user to another by username.
- **sender_user_id**: Sender's user ID
- **receiver_username**: Receiver's username
- **amount**: Amount of USDC to send
Returns transaction result and details.



## OpenAPI

````yaml /api-reference/krypton_backend.json post /api/v1/send_usdc
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/send_usdc:
    post:
      tags:
        - wallet
      summary: Send USDC to another user
      description: |-
        Send USDC from one user to another by username.
        - **sender_user_id**: Sender's user ID
        - **receiver_username**: Receiver's username
        - **amount**: Amount of USDC to send
        Returns transaction result and details.
      operationId: send_usdc_api_v1_send_usdc_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SendUSDCRequest'
        required: true
      responses:
        '200':
          description: Transaction result and details
          content:
            application/json:
              schema:
                additionalProperties: true
                type: object
                title: Response Send Usdc Api V1 Send Usdc Post
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SendUSDCRequest:
      properties:
        sender_user_id:
          type: string
          title: Sender User Id
          description: Sender's user ID
          example: 123e4567-e89b-12d3-a456-426614174000
        receiver_username:
          type: string
          title: Receiver Username
          description: Receiver's username
          example: bob
        amount:
          type: number
          title: Amount
          description: Amount of USDC to send
          example: 10.5
      type: object
      required:
        - sender_user_id
        - receiver_username
        - amount
      title: SendUSDCRequest
    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

````