Get Ticker Information
GET/public/Ticker
Get ticker information for all or requested markets. To clarify usage, note that
- Today's prices start at midnight UTC
- Leaving the pair parameter blank will return tickers for all tradeable assets on Kraken
Request
Query Parameters
pair string
Asset pair to get data for (optional, default: all tradeable exchange pairs)
Example: XBTUSD
Responses
- 200
Ticker info retrieved.
- application/json
- Schema
- Example (from schema)
Schema
result object
property name* AssetTickerInfo
Asset Ticker Info
a string[]
Ask [<price>, <whole lot volume>, <lot volume>]
b string[]
Bid [<price>, <whole lot volume>, <lot volume>]
c string[]
Last trade closed [<price>, <lot volume>]
v string[]
Volume [<today>, <last 24 hours>]
p string[]
Volume weighted average price [<today>, <last 24 hours>]
t integer[]
Number of trades [<today>, <last 24 hours>]
l string[]
Low [<today>, <last 24 hours>]
h string[]
High [<today>, <last 24 hours>]
o string
Today's opening price
error string[]
{
"error": [],
"result": {
"XXBTZUSD": {
"a": [
"30300.10000",
"1",
"1.000"
],
"b": [
"30300.00000",
"1",
"1.000"
],
"c": [
"30303.20000",
"0.00067643"
],
"v": [
"4083.67001100",
"4412.73601799"
],
"p": [
"30706.77771",
"30689.13205"
],
"t": [
34619,
38907
],
"l": [
"29868.30000",
"29868.30000"
],
"h": [
"31631.00000",
"31631.00000"
],
"o": "30502.80000"
}
}
}
Loading...