Exchanges

Check the data related to the exchanges

Available exchanges

Returns the list of exchanges available.

GET api/exchanges

EX: GET /api/exchanges

[
    {
        "EXCHANGE":"Binance"
    },
    {
        "EXCHANGE":"CoinBasePro"
    },
    {
        "EXCHANGE":"Kraken"
    },
    {
        "EXCHANGE":"Yadio"
    }
]

Available pairs from exchange

Returns the list of trading pairs available on a specific exchange

GET api/exchanges/{Exchange}/pairs

EX: GET api/exchanges/CoinBasePro/pairs

Query Parameters

Name
Type
Description

Exchange*

String

Exchange to check

All prices pairs of a specific exchange

Returns the prices of all trading pairs available on a specific exchange

GET /api/exchanges/{Exchange}/prices

EX: GET api/exchanges/CoinBasePro/prices

Query Parameters

Name
Type
Description

Exchange*

String

Exchange to check

Single pair from specific trading pair on a exchange

Returns the price of a specific trading pair on a specific exchange,

GET /api/exchanges/{Exchange}/pairs/{pair}

EX: GET api/exchanges/CoinBasePro/pairs/BTC_USD

Query Parameters

Name
Type
Description

Exchange*

String

Exchange to check

pair*

String

Pair to check

Last updated