Currency Pairs

View as MarkdownOpen in Claude

Obtains available currency pairs corresponding to the given target currency.

GET /iserver/currency/pairs

Request Object

Query Params

currency: String. Required
Specify the target currency you would like to receive official pairs of.
Valid Structure: “USD”

1request_url = f"{baseUrl}/iserver/currency/pairs?currency=USD"
2requests.get(url=request_url)

Response Object

{{currency}}: List of Objects.
[{
symbol: String.
The official symbol of the given currency pair.

conid: int.
The official contract identifier of the given currency pair.

ccyPair: String.
Returns the counterpart of
}]

{
"USD": [
{
"symbol": "USD.SGD",
"conid": 37928772,
"ccyPair": "SGD"
},
{...},
{
"symbol": "USD.RUB",
"conid": 28454968,
"ccyPair": "RUB"
}
]
}