Skip to main content
GET
/
v3
/
currencies
List supported currencies
curl --request GET \
  --url 'https://api.moonpay.com/v3/currencies?apiKey='
[
  {
    "id": "6f424585-8936-4eb1-b01e-443fb306d1f5",
    "createdAt": "2019-05-17T18:24:45.206Z",
    "updatedAt": "2019-05-17T18:24:45.206Z",
    "type": "fiat",
    "name": "Pound Sterling",
    "code": "gbp",
    "precision": 2,
    "minBuyAmount": 30,
    "maxBuyAmount": 9000,
    "isSellSupported": true
  }
]

Documentation Index

Fetch the complete documentation index at: https://dev.moonpay.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

apiKey
string
query
required

Query Parameters

show
enum<string>

Determines which set of cryptocurrencies to return. enabled shows cryptocurrencies enabled in the partner dashboard. all shows all cryptocurrencies supported by MoonPay. If omitted, the response defaults to enabled cryptocurrencies filtered by the originating IP's geolocation.

Available options:
enabled,
all

Response

Successful response — List of Currencies

id
string

Unique identifier for the currency.

Example:

"6f424585-8936-4eb1-b01e-443fb306d1f5"

createdAt
string

Time at which the object was created. Returned as an ISO 8601 string.

Example:

"2019-05-17T18:24:45.206Z"

updatedAt
string

Time at which the object was last updated. Returned as an ISO 8601 string.

Example:

"2019-05-17T18:24:45.206Z"

type
enum<string>

Always fiat

Available options:
fiat
Example:

"fiat"

name
string

The currency's name.

Example:

"Pound Sterling"

code
string

The currency's code.

Example:

"gbp"

precision
number

The currency's precision (number of digits after decimal point).

Example:

2

minBuyAmount
number | null

Represents the minimum transaction buy amount when using this currency as a base currency.

Example:

30

maxBuyAmount
number | null

Represents the maximum transaction buy amount when using this currency as a base currency.

Example:

9000

isSellSupported
boolean

Whether sales for this currency are supported.

Example:

true