Get Prices
GET/v1/markets/:market_id/prices
GET the current prices by market ID.
Request
Path Parameters
market_id stringrequired
Market identification.
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
- Current prices
Schema
result object
price string
The last executed order price.
bid string
The top (bigger value) of bid book.
ask string
The top (lesser value) of ask book.
base_volume_24h string
Volume traded within the last 24 hours in the base currency.
quote_volume_24h string
Volume traded within the last 24 hours in the quote currency.
high_24h string
Highest price within the last 24 hours.
low_24h string
Lowest price within the last 24 hours.
price_change_percent_24h string
Price change during the last 24 hours in percentage.
{
"result": {
"price": "string",
"bid": "string",
"ask": "string",
"base_volume_24h": "string",
"quote_volume_24h": "string",
"high_24h": "string",
"low_24h": "string",
"price_change_percent_24h": "string"
}
}
{
"result": {
"price": "27400",
"bid": "27400",
"ask": "27643.71",
"base_volume_24h": "0.1067496",
"quote_volume_24h": "2953.1230320534",
"high_24h": "30000",
"low_24h": "27202.01",
"price_change_percent_24h": "-8.66"
}
}
Loading...