-
Notifications
You must be signed in to change notification settings - Fork 0
Ticker Information
huyaohua edited this page Jan 19, 2020
·
1 revision
Interface address:https://api.bitforex.com/api/v1/market/ticker
Request method:GET
Parameters
parameter name | Types | Is required | Defaults | Description |
---|---|---|---|---|
symbol | String | Description | - | Trading pairs such as coin-usd-btc, coin-usd-eth, etc. |
Example
# request
GET https://api.bitforex.com/api/v1/market/ticker
# Response
{
"success":true,
"data":{
"date":1516670743277,
"buy":999.21,
"high":1010.1,
"last":999.86,
"low":956.58,
"sell":1000.25,
"vol":10000
}
}
Return value description
Parameter Name | Type | Description |
---|---|---|
buy | double | Buy one price |
date | long | Server timestamp |
high | double | Highest price |
last | double | Latest price |
low | double | Lowest price |
sell | double | Sell one price |
vol | double | 24 hours trading volume |