# Retrieve a list of payment methods

Retrieve all available payment methods or filter by fiat.

Endpoint: GET /{partner}/v2/payment-methods/{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.

## Query parameters:

  - `fiat` (string)
    If the fiat is passed, then all payment methods available for the fiat will be returned. If not provided, then return all payment methods will be returned.

## Response 200 fields (application/json):

  - `id` (string)
    Example: "apple-pay"

  - `name` (string)
    Example: "Apple Pay"

  - `description` (string)
    Example: "Conveniently buy digital currency using your personal VISA or MasterCard."

  - `supportedFiats` (array)
    Example: ["CAD"]


