Kraken · JSON Structure

Spot Rest Order Book Structure

OrderBook schema from Kraken Spot REST API

Type: object Properties: 2
CryptocurrencyExchangeTradingMarket DataSpot TradingFuturesDerivativesStakingEarnNFTWebSocketFIXCustodyOTCPrime BrokerageEmbedOAuthPublic APIs

OrderBook is a JSON Structure definition published by Kraken, describing 2 properties. It conforms to the https://json-structure.org/json-structure/v0/schema meta-schema.

Properties

asks bids

Meta-schema: https://json-structure.org/json-structure/v0/schema

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/json-structure/v0/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/kraken/refs/heads/main/json-structure/spot-rest-order-book-structure.json",
  "name": "OrderBook",
  "type": "object",
  "description": "OrderBook schema from Kraken Spot REST API",
  "properties": {
    "asks": {
      "type": "array",
      "items": {
        "type": "array",
        "items": {
          "type": "string"
        },
        "description": "[price, volume, timestamp]"
      },
      "examples": [
        []
      ]
    },
    "bids": {
      "type": "array",
      "items": {
        "type": "array",
        "items": {
          "type": "string"
        }
      },
      "examples": [
        []
      ]
    }
  }
}