Bitstamp · Schema

TradingPairInfo

JSON Schema for Bitstamp TradingPairInfo

CryptocurrencyExchangeTradingBitcoinEthereumSpot TradingWebSocketMarket DataOrder ManagementFinance

Properties

Name Type Description
name string Trading pair symbol (e.g., BTC/USD)
url_symbol string URL-friendly pair identifier (e.g., btcusd)
base_decimals integer Decimal precision for base asset
counter_decimals integer Decimal precision for counter/quote asset
instant_order_counter_decimals integer Decimal precision for instant orders
minimum_order string Minimum order size with currency
trading string Trading status (Enabled/Disabled)
instant_and_market_orders string Instant and market orders availability (Enabled/Disabled)
description string Full pair name description
View JSON Schema on GitHub

JSON Schema

tradingpairinfo.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "TradingPairInfo",
  "description": "JSON Schema for Bitstamp TradingPairInfo",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Trading pair symbol (e.g., BTC/USD)"
    },
    "url_symbol": {
      "type": "string",
      "description": "URL-friendly pair identifier (e.g., btcusd)"
    },
    "base_decimals": {
      "type": "integer",
      "description": "Decimal precision for base asset"
    },
    "counter_decimals": {
      "type": "integer",
      "description": "Decimal precision for counter/quote asset"
    },
    "instant_order_counter_decimals": {
      "type": "integer",
      "description": "Decimal precision for instant orders"
    },
    "minimum_order": {
      "type": "string",
      "description": "Minimum order size with currency"
    },
    "trading": {
      "type": "string",
      "description": "Trading status (Enabled/Disabled)"
    },
    "instant_and_market_orders": {
      "type": "string",
      "description": "Instant and market orders availability (Enabled/Disabled)"
    },
    "description": {
      "type": "string",
      "description": "Full pair name description"
    }
  }
}