Kraken · Schema
AssetPair
AssetPair schema from Kraken Spot REST API
CryptocurrencyExchangeTradingMarket DataSpot TradingFuturesDerivativesStakingEarnNFTWebSocketFIXCustodyOTCPrime BrokerageEmbedOAuthPublic APIs
Properties
| Name | Type | Description |
|---|---|---|
| altname | string | |
| wsname | string | |
| aclass_base | string | |
| base | string | |
| aclass_quote | string | |
| quote | string | |
| pair_decimals | integer | |
| lot_decimals | integer | |
| lot_multiplier | integer | |
| leverage_buy | array | |
| leverage_sell | array | |
| fees | array | |
| fees_maker | array | |
| fee_volume_currency | string | |
| margin_call | integer | |
| margin_stop | integer | |
| ordermin | string | |
| costmin | string | |
| tick_size | string | |
| status | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/kraken/refs/heads/main/json-schema/spot-rest-asset-pair-schema.json",
"title": "AssetPair",
"description": "AssetPair schema from Kraken Spot REST API",
"type": "object",
"properties": {
"altname": {
"type": "string",
"example": "string"
},
"wsname": {
"type": "string",
"example": "string"
},
"aclass_base": {
"type": "string",
"example": "string"
},
"base": {
"type": "string",
"example": "string"
},
"aclass_quote": {
"type": "string",
"example": "string"
},
"quote": {
"type": "string",
"example": "string"
},
"pair_decimals": {
"type": "integer",
"example": "XBTUSD"
},
"lot_decimals": {
"type": "integer",
"example": 1
},
"lot_multiplier": {
"type": "integer",
"example": 1
},
"leverage_buy": {
"type": "array",
"items": {
"type": "integer"
},
"example": []
},
"leverage_sell": {
"type": "array",
"items": {
"type": "integer"
},
"example": []
},
"fees": {
"type": "array",
"items": {
"type": "array",
"items": {
"type": "number"
}
},
"example": []
},
"fees_maker": {
"type": "array",
"items": {
"type": "array",
"items": {
"type": "number"
}
},
"example": []
},
"fee_volume_currency": {
"type": "string",
"example": "0.01"
},
"margin_call": {
"type": "integer",
"example": "0.01"
},
"margin_stop": {
"type": "integer",
"example": "0.01"
},
"ordermin": {
"type": "string",
"example": "string"
},
"costmin": {
"type": "string",
"example": "string"
},
"tick_size": {
"type": "string",
"example": "string"
},
"status": {
"type": "string",
"example": "string"
}
}
}