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
spot
Possible values: [KRW
, USD
]
Specifies currency applied to price values
USD
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
specifies the date and the time in UTC milliseconds
specifies the exchange name
specifies the token id
specifies the latest price
specifies the latest price in fiat
specifies the latest price in USD
specifies the quote token
specifies the symbol (base-quote)
specifies the price change in the last 24 hours
specifies the trading volume in fiat in the last 24 hours
specifies the trading volume in USD in the last 24 hours
{
"currency": "string",
"data": {
"b": "string",
"d": 0,
"e": "string",
"id": "string",
"p": 0,
"pfiat": 0,
"pusd": 0,
"q": "string",
"s": "string",
"v": 0,
"vfiat": 0,
"vusd": 0
},
"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"
}