GET /api/v1/currencies

Returns enabled currencies for the authenticated API key owner's effective jurisdiction.

Headers

  • X-API-KEY string Required

    Public API key issued from the Lumetrade API key management flow.

  • X-API-SECRET string Required

    API secret paired with the public API key.

Responses

  • 200 application/json

    Currencies returned successfully

    Hide response attributes Show response attributes object
    • currency string

      Currency code.

    • name string

      Currency display name.

GET /api/v1/currencies
curl \
 --request GET 'https://api.lumetrade.com/api/v1/currencies' \
 --header "X-API-KEY: string" \
 --header "X-API-SECRET: string"
Response examples (200)
[
  {
    "currency": "ZAR",
    "name": "South African Rand"
  }
]