Developer Portal

List CurrenciesGET

Return the account currencies supported for creating or configuring trading accounts.

View as Markdown
GET
/options/currencies

Authorization

Authorization<token>

Bearer access token issued by the admin login flow.

In: header

curl -X GET "https://example.com/options/currencies" \
  -H "Authorization: <token>"

A successful response.

{
  "currencies": [
    {
      "code": "string",
      "sign": "string",
      "decimals": 0
    }
  ]
}