List currencies Run in API Explorer

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://docs.lumetrade.com/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
{
  "Lumetrade API MCP server": {
    "url": "https://docs.lumetrade.com/mcp"
  }
}

Close
GET /api/v1/currencies

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

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: $API_KEY" \
 --header "X-API-SECRET: $API_KEY"
Response examples (200)
[
  {
    "currency": "ZAR",
    "name": "South African Rand"
  }
]