LogoLogo
  • Introduction
  • Get started
  • Trading Account
  • Signing
  • REST API
    • Account
      • Get Account Info
      • Get Positions
      • Get ABR payments
    • Market
      • Get Markets
      • Get Assets
      • Get Orderbook
    • Trade
      • Create Order
      • Cancel Order
      • Query order
      • List historical orders
      • List active orders
      • Trade list
    • Time
  • Web Sockets
    • Authentication
    • Connectivity check
    • Subscription
    • Public topics
      • trade
      • marketInfo
      • orderBook
      • accountCreated
      • kline
    • Private topics
      • conditionalOrder
      • balance
      • order
      • fill
  • Glossary
Powered by GitBook
On this page
  1. REST API
  2. Market

Get Markets

PreviousMarketNextGet Assets

Last updated 1 year ago

get
Query parameters
namestringOptional
statusstring ยท enumOptionalPossible values:
Responses
200Success
application/json
get
GET /v1/public/markets HTTP/1.1
Host: 
Accept: */*
200Success
[
  {
    "id": "BTC-USDC",
    "name": "BTC-USDC",
    "assetId": "BTC",
    "collateralAssetId": "USDC",
    "status": "TRADABLE",
    "metadataUrl": "text",
    "metadata": {},
    "settings": {
      "tickSize": 1,
      "tickPrecision": 1,
      "stepSize": 1,
      "stepPrecision": 1,
      "minOrderSize": 1,
      "minLeverage": 1,
      "maxLeverage": 1,
      "maintenanceMarginFraction": 1,
      "initialMarginFraction": 1,
      "incrementalInitialMarginFraction": 1,
      "incrementalPositionSize": 1,
      "baselinePositionSize": 1,
      "maxPositionSize": 1,
      "currentlyAllowedLeverage": 1
    }
  }
]