Markets

GET /pairs

Retrieve a list of markets supported by Everstrike.

Responses

GET /pairs
curl \
 -X GET https://api.everstrike.io/pairs
Response examples (200)
{
  "code": 200,
  "msg": "string",
  "result": {
    "USD_BTCCALL_PERP": [
      {
        "key": "USD_BTCCALL_PERP",
        "base": "USD",
        "base_precision": 18,
        "base_display_precision": 2,
        "quote": "BTC",
        "quote_precision": 12,
        "quote_display_precision": 1,
        "qty_display_precision": 4,
        "precision_asset": "BTC",
        "tv_price_precision": 1,
        "tv_volume_precision": 4,
        "symbol": "BTCCALL90/USD",
        "description": "BTC Perpetual Call Option (+10%)",
        "introduction": "BTC call option. The strike of the option is pinned to the 100-hour EMA of BTC (+10%). The option never expires.",
        "website": "https://bitcoin.org",
        "explorer": "https://www.blockchain.com/explore",
        "subreddit": "bitcoin",
        "issue_price": 0.0025,
        "issue_time": 1225494000,
        "total_supply": 21000000,
        "category": "call",
        "url": "https://en.wikipedia.org/wiki/Bitcoin",
        "commission_maker": 0.0,
        "commission_taker": 0.0003,
        "commission_liquidation": 0.0003,
        "contract": "PERP",
        "min_initial_margin": 1,
        "min_maintenance_margin": 0.5,
        "initial_risk_limit": 1e-06,
        "maintenance_risk_limit": 5e-07,
        "deleverage_threshold": 0,
        "swap_threshold": 0.5,
        "min_liquidate": 500,
        "liquidate_threshold": 0.1,
        "funding_threshold": 0.0005,
        "funding_interval": 3600000,
        "funding_time_window": 36000000,
        "funding_min": -1,
        "funding_max": 1,
        "fair_qty": 0.001,
        "fair_multiplier": 0.01,
        "insurance_percentage": 1,
        "index_price_update_interval": 4000,
        "index_price_exclude_threshold": 4,
        "index_price_hit_api": true,
        "mark_price_max_deviation": 0.5,
        "mark_price_ema_range": 5,
        "trading_ema_range": 30,
        "trading_max_index_deviation": 0.5,
        "trading_max_mark_deviation": 0.5,
        "composite": false,
        "use_ema": true,
        "call": true,
        "index_price_ema_range": 100,
        "price_multiplier": 1.1,
        "underlier": "BTC",
        "order_types": [
          "MARKET",
          "LIMIT"
        ],
        "filters": {
          "price": {
            "filter_type": "PRICE_FILTER",
            "min_price": 0.001,
            "max_price": 100000,
            "tick_size": 1e-05
          },
          "qty": {
            "filter_type": "LOT_SIZE",
            "min_qty": 0.001,
            "max_qty": 50000,
            "tick_size": 1e-05
          },
          "icebergs": {
            "filter_type": "ICEBERG",
            "min_qty": 1,
            "max_qty": 10,
            "tick_size": 1
          },
          "interest": {
            "filter_type": "INTEREST",
            "min_qty": 0,
            "max_qty": 0.1,
            "tick_size": 1e-05
          }
        },
        "status": "TRADING",
        "active": true,
        "usd_price": 3843.01040541
      }
    ]
  }
}
Response examples (503)
{
  "code": 503,
  "msg": "Invalid request",
  "result": {}
}