> ## 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 Kyc Access Token



## OpenAPI

````yaml /api-reference/krypton_backend.json post /api/v1/kyc/access-token
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/kyc/access-token:
    post:
      tags:
        - wallet
      summary: Get Kyc Access Token
      operationId: get_kyc_access_token_api_v1_kyc_access_token_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                additionalProperties: true
                type: object
                title: Response Get Kyc Access Token Api V1 Kyc Access Token Post

````