Data
GET/api/v1/ticker
Fetch the latest ticker for symbol from given exchange.
Request
Query Parameters
Specifes exchange
Specifies symbol
Possible values: [spot
, futures
]
Specifies market
Possible values: [KRW
, USD
]
Specifies currency applied to price values
USD
Specifies conversion base applied to price values
Header Parameters
Your DataMaxi+ API key
Responses
- 200
- 400
- 401
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema
data
object
specifies the base token
BTC
specifies the date and the time in UTC milliseconds
1632960000000
specifies the exchange name
binance
highest bid from orderbook
41900
lowest ask from orderbook
42100
lower depth(2%)
1000
specifies the latest price
43000
specifies the price 24 hours ago
42000
specified price change between the latest price and the price 24 hours ago
0.0238
specifies the quote token
USDT
specifies the symbol (base-quote)
BTC-USDT
upper depth(2%)
1000
specifies the trading volume in the last 24 hours
1000
{
"currency": "string",
"data": {
"b": "BTC",
"d": 1632960000000,
"e": "binance",
"hb": 41900,
"la": 42100,
"ld": 1000,
"p": 43000,
"p24h": 42000,
"pc": 0.0238,
"q": "USDT",
"s": "BTC-USDT",
"ud": 1000,
"v": 1000
},
"market": "string"
}
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
error
specifies the error message
{
"error": "string"
}
Unauthorized
- application/json
- Schema
- Example (from schema)
Schema
error
specifies the error message
{
"error": "string"
}
Internal Server Error
- application/json
- Schema
- Example (from schema)
Schema
error
specifies the error message
{
"error": "string"
}