> ## 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 fiat deposit options



## OpenAPI

````yaml /coins/api-reference/openapi.json get /fiat-deposits/options
openapi: 3.1.0
info:
  contact:
    email: support@daya.co
    name: API Support
  description: >-
    Public developer API for the Coins by Daya product. X-API-Key authenticated.
    Market data, portfolio, balances, transactions, order placement, crypto and
    fiat withdrawals. All responses use the standard envelope: { success,
    message?, data?, error?, timestamp }.
  title: Daya Coins Public API
  version: 1.0.0
servers:
  - url: https://api.daya.co/coins/v1
    description: Production server
security:
  - ApiKeyAuth: []
paths:
  /fiat-deposits/options:
    get:
      tags:
        - coins-deposits
      summary: List fiat deposit options
      operationId: getFiatDepositsOptions
      responses:
        '200':
          content:
            application/json:
              schema:
                allOf:
                  - $ref: >-
                      #/components/schemas/github_com_dayacoins_daya-coins-service_pkg_response.Envelope
                  - properties:
                      data:
                        items:
                          $ref: >-
                            #/components/schemas/internal_publicapi_v1.PublicFiatDepositOption
                        type: array
                    type: object
          description: Fiat deposit options
        '401':
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/github_com_dayacoins_daya-coins-service_pkg_response.Envelope
          description: Missing or invalid API key
components:
  schemas:
    github_com_dayacoins_daya-coins-service_pkg_response.Envelope:
      properties:
        data: {}
        error:
          $ref: >-
            #/components/schemas/github_com_dayacoins_daya-coins-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.PublicFiatDepositOption:
      properties:
        account:
          $ref: >-
            #/components/schemas/internal_publicapi_v1.PublicFiatDepositOptionAccount
        currency:
          example: NGN
          type: string
        display_name:
          example: Nigerian Naira
          type: string
        min_amount:
          example: '1000.00'
          type: string
      type: object
    github_com_dayacoins_daya-coins-service_pkg_response.ErrorData:
      properties:
        code:
          type: string
        details: {}
        fields:
          additionalProperties:
            type: string
          type: object
        message:
          type: string
      type: object
    internal_publicapi_v1.PublicFiatDepositOptionAccount:
      properties:
        account_name:
          example: John Doe / Daya
          type: string
        account_number:
          example: '0123456789'
          type: string
        bank_code:
          example: '035'
          type: string
        bank_name:
          example: Wema Bank
          type: string
        provider:
          enum:
            - paystack
            - flutterwave
          example: paystack
          type: string
        status:
          enum:
            - active
            - disabled
          example: active
          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

````