GET
/
currencies
List supported fiat currencies
curl --request GET \
  --url https://api.paycrest.io/v1/currencies
{
  "status": "success",
  "message": "Operation successful",
  "data": [
    {
      "code": "<string>",
      "name": "<string>",
      "shortName": "<string>",
      "decimals": 123,
      "symbol": "<string>",
      "marketRate": 123
    }
  ]
}
Retrieve a list of supported fiat currencies.

Response

200
application/json

List of currencies

The response is of type object.