Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 860 Bytes

get_otc_price.md

File metadata and controls

34 lines (28 loc) · 860 Bytes

Get OTC Price

Get otc currency buy and sell price

Api Request

GET /v3/price/otc/{currency}

Parameters:

Header Path Query Type Required Description Default Range Example
currency string Yes btc

Api Response

Response Example:

{
    "currency": "btc",
    "buySwapQuotation": {
        "twd": {
            "pricingCurrency": "TWD",
            "exchangeRate": "1130752.513945"
        }
    },
    "sellSwapQuotation": {
        "twd": {
            "pricingCurrency": "TWD",
            "exchangeRate": "1107699.219"
        }
    }
}

Back