Kraken · Schema
Pair
Pair schema from Kraken Spot WebSocket API v2
CryptocurrencyExchangeTradingMarket DataSpot TradingFuturesDerivativesStakingEarnNFTWebSocketFIXCustodyOTCPrime BrokerageEmbedOAuthPublic APIs
Properties
| Name | Type | Description |
|---|---|---|
| symbol | string | |
| base | string | |
| quote | string | |
| status | string | |
| marginable | boolean | |
| has_index | boolean | |
| qty_min | string | |
| qty_increment | string | |
| qty_precision | integer | |
| price_increment | string | |
| price_precision | integer | |
| cost_precision | integer | |
| cost_min | string | |
| margin_initial | number | |
| position_limit_long | integer | |
| position_limit_short | integer |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/kraken/refs/heads/main/json-schema/kraken-pair-schema.json",
"title": "Pair",
"description": "Pair schema from Kraken Spot WebSocket API v2",
"type": "object",
"properties": {
"symbol": {
"type": "string",
"example": "PI_XBTUSD"
},
"base": {
"type": "string",
"example": "string"
},
"quote": {
"type": "string",
"example": "string"
},
"status": {
"type": "string",
"example": "string"
},
"marginable": {
"type": "boolean",
"example": "0.01"
},
"has_index": {
"type": "boolean",
"example": true
},
"qty_min": {
"type": "string",
"example": "string"
},
"qty_increment": {
"type": "string",
"example": "string"
},
"qty_precision": {
"type": "integer",
"example": 1
},
"price_increment": {
"type": "string",
"example": "0.01"
},
"price_precision": {
"type": "integer",
"example": "0.01"
},
"cost_precision": {
"type": "integer",
"example": 1
},
"cost_min": {
"type": "string",
"example": "string"
},
"margin_initial": {
"type": "number",
"format": "double",
"example": "0.01"
},
"position_limit_long": {
"type": "integer",
"example": 1
},
"position_limit_short": {
"type": "integer",
"example": 1
}
}
}