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

# List crypto deposit options



## OpenAPI

````yaml /stocks/api-reference/openapi.json get /crypto-deposits/options
openapi: 3.1.0
info:
  contact:
    email: support@daya.co
    name: API Support
  description: >-
    Public developer API for the Stocks by Daya product. X-API-Key
    authenticated. Market data, portfolio, balances, activity, order placement,
    and fiat withdrawals. All responses use the standard envelope: { success,
    message?, data?, error?, timestamp }.
  title: Daya Stocks Public API
  version: 1.0.0
servers:
  - url: https://api.daya.co/stocks/v1
    description: Production server
security:
  - ApiKeyAuth: []
paths:
  /crypto-deposits/options:
    get:
      tags:
        - stocks-deposits
      summary: List crypto deposit options
      operationId: getCryptoDepositsOptions
      responses:
        '200':
          content:
            application/json:
              schema:
                allOf:
                  - $ref: >-
                      #/components/schemas/github_com_dayacoins_daya-stocks-service_pkg_response.Envelope
                  - properties:
                      data:
                        items:
                          $ref: >-
                            #/components/schemas/internal_publicapi_v1.PublicCryptoDepositOption
                        type: array
                    type: object
          description: Crypto deposit options
        '401':
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/github_com_dayacoins_daya-stocks-service_pkg_response.Envelope
          description: Missing or invalid API key
components:
  schemas:
    github_com_dayacoins_daya-stocks-service_pkg_response.Envelope:
      properties:
        data: {}
        error:
          $ref: >-
            #/components/schemas/github_com_dayacoins_daya-stocks-service_pkg_response.ErrorData
        message:
          description: Message is an optional banner/toast string.
          type: string
        success:
          type: boolean
        timestamp:
          type: string
      type: object
    internal_publicapi_v1.PublicCryptoDepositOption:
      properties:
        chains:
          items:
            $ref: >-
              #/components/schemas/internal_publicapi_v1.PublicCryptoDepositOptionChain
          type: array
        decimals:
          example: 6
          type: integer
        display_name:
          example: Tether
          type: string
        icon:
          example: https://assets.daya.co/icons/usdt.png
          type: string
        symbol:
          example: USDT
          type: string
      type: object
    github_com_dayacoins_daya-stocks-service_pkg_response.ErrorData:
      properties:
        code:
          type: string
        details: {}
        fields:
          additionalProperties:
            type: string
          type: object
        message:
          type: string
      type: object
    internal_publicapi_v1.PublicCryptoDepositOptionChain:
      properties:
        blockchain:
          example: ethereum
          type: string
        blockchain_name:
          example: Ethereum
          type: string
        contract_address:
          example: '0xdAC17F958D2ee523a2206206994597C13D831ec7'
          type: string
        deposit_address:
          example: '0x742d35Cc6634C0532925a3b844Bc454e4438f44e'
          type: string
        icon:
          example: https://assets.daya.co/icons/ethereum.png
          type: string
        min_amount:
          example: '1.00'
          type: string
        min_confirmations:
          example: 12
          type: integer
        qr_code_url:
          example: https://assets.daya.co/qr/0x742d35cc.png
          type: string
      type: object
  securitySchemes:
    ApiKeyAuth:
      description: >-
        Your Daya API key, sent in the X-API-Key header. Issue and scope keys in
        the Daya dashboard.
      in: header
      name: X-API-Key
      type: apiKey

````