Home
Kraken
Spot Rest Ticker Structure
Spot Rest Ticker Structure
Ticker schema from Kraken Spot REST API
Type: object
Properties: 9
Cryptocurrency Exchange Trading Market Data Spot Trading Futures Derivatives Staking Earn NFT WebSocket FIX Custody OTC Prime Brokerage Embed OAuth Public APIs
Ticker is a JSON Structure definition published by Kraken, describing 9 properties. It conforms to the https://json-structure.org/json-structure/v0/schema meta-schema.
Properties
a
b
c
v
p
t
l
h
o
Meta-schema: https://json-structure.org/json-structure/v0/schema
JSON Structure
{
"$schema": "https://json-structure.org/json-structure/v0/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/kraken/refs/heads/main/json-structure/spot-rest-ticker-structure.json",
"name": "Ticker",
"type": "object",
"description": "Ticker schema from Kraken Spot REST API",
"properties": {
"a": {
"type": "array",
"items": {
"type": "string"
},
"description": "[price, whole-lot volume, lot volume] ask",
"examples": [
[]
]
},
"b": {
"type": "array",
"items": {
"type": "string"
},
"description": "[price, whole-lot volume, lot volume] bid",
"examples": [
[]
]
},
"c": {
"type": "array",
"items": {
"type": "string"
},
"description": "[price, lot volume] last trade closed",
"examples": [
[]
]
},
"v": {
"type": "array",
"items": {
"type": "string"
},
"description": "[today, last 24h] volume",
"examples": [
[]
]
},
"p": {
"type": "array",
"items": {
"type": "string"
},
"description": "[today, last 24h] vwap",
"examples": [
[]
]
},
"t": {
"type": "array",
"items": {
"type": "int64"
},
"description": "[today, last 24h] number of trades",
"examples": [
[]
]
},
"l": {
"type": "array",
"items": {
"type": "string"
},
"description": "[today, last 24h] low",
"examples": [
[]
]
},
"h": {
"type": "array",
"items": {
"type": "string"
},
"description": "[today, last 24h] high",
"examples": [
[]
]
},
"o": {
"type": "string",
"description": "Today's opening price",
"examples": [
"string"
]
}
}
}