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

# Get fiat currencies

> List of fiat currencies supported by Sardine



## OpenAPI

````yaml /api_reference/nft.yaml get /fiat-currencies
openapi: 3.1.0
info:
  version: '1.0'
  title: NFT API
  summary: API to enable direct NFT purchasing
  description: Reference for Sardine Crypto API
servers:
  - url: https://api.sandbox.sardine.ai/v1
    description: Sandbox
  - url: https://api.sardine.ai/v1
    description: Prod Server
security:
  - {}
paths:
  /fiat-currencies:
    get:
      summary: Get fiat currencies
      description: List of fiat currencies supported by Sardine
      operationId: get-trade-get-fiat-currencies
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      symbol:
                        type: string
                        description: Symbol of currency
                        examples:
                          - USD
                      supportingCountries:
                        type: array
                        description: List of countries which support this currency
                        items:
                          type: string
                          examples:
                            - US
                      name:
                        type: string
                        description: Name of currency
                        examples:
                          - US Dollar
                      paymentOptions:
                        type: array
                        items:
                          type: object
                          properties:
                            name:
                              type: string
                              description: Name of payment method
                              examples:
                                - ACH
                            processingTime:
                              type: string
                              description: Description of time taken for funds to settle
                              examples:
                                - Instant - 3 days
                            dailyLimit:
                              type: integer
                              description: >-
                                Amount of the currency that can be transacted in
                                a day, in minor units i.e. cents if currency is
                                US dollars
                              minimum: 0
                              examples:
                                - 30000
                            maxAmount:
                              type: integer
                              description: >-
                                The maximum amount of the currency that can be
                                passed in a transaction, in minor units i.e.
                                cents if currency is US dollars
                              examples:
                                - 30000
                            minAmount:
                              type: integer
                              description: >-
                                The minimum amount of the currency that will be
                                supported, in minor units i.e. cents if currency
                                is US dollars
                              examples:
                                - 5000
                x-examples:
                  example-1:
                    response:
                      symbol: USD
                      supportingCountries:
                        - US
                      name: US Dollar
                      paymentOptions:
                        - name: ACH
                          id: '1'
                          processingTime: Instant - 3 days
                          displayText: true
                          icon: string
                          dailyLimit: 300000
                          maxAmount: 300000
                          minAmount: 5000
                      isAllowed: true
                      defaultAmount: 20000
                      icon: string
              examples:
                example-1:
                  value:
                    data:
                      symbol: USD
                      supportingCountries:
                        - US
                      name: US Dollar
                      paymentOptions:
                        - name: ACH
                          processingTime: Instant - 3 days
                          dailyLimit: 30000
                          maxAmount: 30000
                          minAmount: 5000
      security:
        - ClientToken: []
      servers:
        - url: https://api.sandbox.sardine.ai/v1
          description: Sandbox
        - url: https://api.sardine.ai/v1
          description: Prod Server
components:
  securitySchemes:
    ClientToken:
      type: http
      scheme: basic

````