> ## 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/onramp.yaml get /fiat-currencies
openapi: 3.0.3
info:
  version: '1.0'
  title: Crypto API
  description: Reference for Sardine Crypto API
  contact:
    email: support@sardine.io
    name: Sardine
    url: docs.sardine.io
servers:
  - url: https://api.sandbox.sardine.ai/v1
    description: Sandbox
  - url: https://api.sardine.ai/v1
    description: Prod Server
security: []
paths:
  /fiat-currencies:
    get:
      tags:
        - Coverage
      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:
                  response:
                    type: object
                    properties:
                      symbol:
                        type: string
                        description: 3 letter symbol of fiat currency
                      supportingCountries:
                        type: array
                        description: 2 letter ISO code for countries
                        items:
                          type: string
                      name:
                        type: string
                        description: Name of currency
                      paymentOptions:
                        type: array
                        items:
                          type: object
                          properties:
                            name:
                              type: string
                              description: Name of payment method
                            id:
                              type: string
                            processingTime:
                              type: string
                            displayText:
                              type: boolean
                            icon:
                              type: string
                            dailyLimit:
                              type: integer
                              description: Amount of crypto that can be purchased daily
                            maxAmount:
                              type: integer
                              description: The maximum size of the transaction
                            minAmount:
                              type: integer
                              description: The minimum size of transaction
                            weeklyLImit:
                              type: integer
                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
      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

````