Kraken · JSON Structure

Futures Rest Send Order Request Structure

SendOrderRequest schema from Kraken Futures REST API

Type: object Properties: 11
CryptocurrencyExchangeTradingMarket DataSpot TradingFuturesDerivativesStakingEarnNFTWebSocketFIXCustodyOTCPrime BrokerageEmbedOAuthPublic APIs

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

Properties

orderType symbol side size limitPrice stopPrice triggerSignal reduceOnly cliOrdId trailingStopMaxDeviation trailingStopDeviationUnit

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/futures-rest-send-order-request-structure.json",
  "name": "SendOrderRequest",
  "type": "object",
  "description": "SendOrderRequest schema from Kraken Futures REST API",
  "properties": {
    "orderType": {
      "type": "string",
      "enum": [
        "lmt",
        "post",
        "mkt",
        "stp",
        "take_profit",
        "ioc"
      ],
      "examples": [
        "lmt"
      ]
    },
    "symbol": {
      "type": "string",
      "examples": [
        "PI_XBTUSD"
      ]
    },
    "side": {
      "type": "string",
      "enum": [
        "buy",
        "sell"
      ],
      "examples": [
        "buy"
      ]
    },
    "size": {
      "type": "double",
      "examples": [
        0.01
      ]
    },
    "limitPrice": {
      "type": "double",
      "examples": [
        "0.01"
      ]
    },
    "stopPrice": {
      "type": "double",
      "examples": [
        "0.01"
      ]
    },
    "triggerSignal": {
      "type": "string",
      "enum": [
        "mark",
        "index",
        "last"
      ],
      "examples": [
        "mark"
      ]
    },
    "reduceOnly": {
      "type": "boolean",
      "examples": [
        true
      ]
    },
    "cliOrdId": {
      "type": "string",
      "examples": [
        "OQCLML-BW3P3-BUCMWZ"
      ]
    },
    "trailingStopMaxDeviation": {
      "type": "double",
      "examples": [
        0.01
      ]
    },
    "trailingStopDeviationUnit": {
      "type": "string",
      "examples": [
        "string"
      ]
    }
  }
}