# Retrieve a list of fiats

Retrieve all available fiat currencies supported by Banxa.

Endpoint: GET /{partner}/v2/fiats/{orderType}
Version: v2
Security: 

## Path parameters:

  - `partner` (string, required)
    This is the partner code provided to you during onboarding. e.g. metamask.

  - `orderType` (string, required)
    Determines availability for Buy or Sell orders. By default if this value is not passed, then fiat availability for Buy orders will be returned.

## Header parameters:

  - `Accept` (string)

  - `x-api-key` (string)
    This is the API Key that has been provided to you during onboarding.

## Response 200 fields (application/json):

  - `id` (string)
    Example: "USD"

  - `description` (string)
    Example: "US Dollar"

  - `symbol` (string)
    Example: "$"

  - `supportedPaymentMethods` (array)

  - `supportedPaymentMethods.id` (string)
    Example: "debit-credit-card"

  - `supportedPaymentMethods.name` (string)
    Example: "Credit Debit Card"

  - `supportedPaymentMethods.minimum` (string)
    Example: "10"

  - `supportedPaymentMethods.maximum` (string)
    Example: "50000"


