Quote
The Quote API allows you to view the price for a specific crypto ticker.
Note, although Winter connects with multiple exchanges, we only show you the best prices, regardless of exchange. We abstract away needing to figure out which exchange is the best. Fees are the same regardless of which exchange we use to fulfill.
#
API detailsURL : /v1/quote/<crypto_ticker>
Method : GET
Auth required : Yes (API key and secret are required)
#
Success ResponseCode : 200 OK
Returns an array of order statuses.
Sample response return:
{ "quote_time": 1636311123, "crypto_ticker": "ETH", "bid_price": 4,631.23, "ask_price": 4,631.25, "last_trade_price": 4,631.24, "24_hr_volume": 81232.01, "24_hr_price_movement_pct": 2.45 }
- quote_time - Int. The epoch time of quote. GMT timezone. Helpful to understand how stale the price quote is.
- crypto_ticker - String. The ticker of the crypto for the price quote. Check this page for the cryptos we support.
- bid_price - Double. The latest bid price in USD.
- ask_price - Double. The latest ask price in USD.
- last_trade_price - Double. The latest trade price in USD.
- 24_hr_volume - Double. The number of the crypto ticker traded in the last 24 hours
- 24_hr_price_movement_pct - Double. The percent of movement of the price in the last 24 hours
#
Error ResponseCode : 400 BAD REQUEST
Condition : If crypto ticker does not exist or is not available to trade