Satori Finance Docs
  • ✨About Satori Finance
  • 👉Beginner's Guide
    • Deposit & Withdrawal
    • Trading
  • 💸Perpetual Trading
    • Matchmaking
    • Margin
    • Isolated/Cross Margin
    • Funding Costs
    • Trading fees
    • Index Price
    • Mark Price
    • Liquidations
    • Insurance Funds
    • Automatic Deleveraging
  • 🌽Vaults
  • 📲Telegram Mini APP
  • 🚀Liquid Restaked Tokens (LRT)
  • 🔥Points
  • 🎉Trading Competition
    • Satori Season2 Trading Competition Backed by Hemi
  • 🎭Referrals
  • 🦄Ecosystem Partner Incentives
  • API DOCS
    • 👨‍💻OpenAPI
      • Introduce
      • Auth
      • URL
      • Response Code
      • Rest API
        • A complete example
        • Order Operation 【Private Operation】
          • Create order
          • Batch create orders
          • Cancel order
          • Batch Cancel orders
        • Position Operation 【private operation】
          • Add/reduce margin
        • 【Private Query】
          • [Account] Query account balance
          • [Order] Query current order list
          • [Trade] Query match result
          • [Position] Query position list
        • 【Public Query】
          • System time
          • Index price
          • Mark price
          • Last trade
          • Pair list
      • WebSocket
        • Events
        • Subscription
          • Basic parameters
          • Example
          • Account
          • Orders
          • Positions
          • Trades
Powered by GitBook
On this page
  1. API DOCS
  2. OpenAPI
  3. Rest API
  4. 【Public Query】

Pair list

method url:/api/third/info/pairs

request type:GET

request param:

param_name

param note

type

required

data type

schema

response param:(list)

param_name

param note

type

schema

  id

integer(int64)

  makerTradeFeeRate

%

number

  settleCoinId

integer(int64)

  settleCoinName

string

  settleDecimal

integer(int32)

  symbol

string

  takerTradeFeeRate

%

number

  tradeCoinId

integer(int64)

  tradeCoinName

string

  tradeDecimal

integer(int32)

  swapCoinId

integer(int64)

  swapCoinName

string

  isDual

boolean

  faceMultiplier

number

  isDelivery

boolean

not support

  deliveryTime

integer(int64)

not support

  deliveryMarketPrice

number

not support

  deliveryStatus

integer(int32)

not support

  pair

string

  minCount

number

  maxCount

number

example:

1 Set request parameters, query params:

​

2 Assemble the complete request

curl --location 'https://zk-test.satori.finance/api/third/info/pairs'

3 Return results

{
    "error": false,
    "code": 200,
    "msg": "SUCCESS",
    "data": [
        {
            "id": 1,
            "tradeCoinId": 2,
            "tradeCoinName": "ETH",
            "tradeDecimal": 3,
            "priceDecimal": 2,
            "settleDecimal": 6,
            "settleCoinId": 4,
            "settleCoinName": "USD",
            "swapCoinId": 2,
            "swapCoinName": null,
            "symbol": "ETH-USD",
            "classifyId": null,
            "visible": 0,
            "tradable": true,
            "status": null,
            "sort": null,
            "isDual": false,
            "faceMultiplier": "1",
            "isDelivery": false,
            "deliveryTime": null,
            "deliveryMarketPrice": null,
            "deliveryStatus": null,
            "takerTradeFeeRate": "0.06",
            "makerTradeFeeRate": "0.04",
            "pair": "ETH-USD",
            "minCount": "0.01",
            "maxCount": "1000000",
            "brandExchange": null,
            "preMarket": null,
            "initMarkPrice": null,
            "releaseTime": null,
            "createTime": null
        },
        {
            "id": 2,
            "tradeCoinId": 1,
            "tradeCoinName": "BTC",
            "tradeDecimal": 3,
            "priceDecimal": 1,
            "settleDecimal": 6,
            "settleCoinId": 4,
            "settleCoinName": "USD",
            "swapCoinId": 1,
            "swapCoinName": null,
            "symbol": "BTC-USD",
            "classifyId": null,
            "visible": 0,
            "tradable": true,
            "status": null,
            "sort": null,
            "isDual": false,
            "faceMultiplier": "1",
            "isDelivery": false,
            "deliveryTime": null,
            "deliveryMarketPrice": null,
            "deliveryStatus": null,
            "takerTradeFeeRate": "0.06",
            "makerTradeFeeRate": "0.04",
            "pair": "BTC-USD",
            "minCount": "0.001",
            "maxCount": "1000000",
            "brandExchange": null,
            "preMarket": null,
            "initMarkPrice": null,
            "releaseTime": null,
            "createTime": null
        },
        {
            "id": 3,
            "tradeCoinId": 5,
            "tradeCoinName": "MATIC",
            "tradeDecimal": 1,
            "priceDecimal": 4,
            "settleDecimal": 6,
            "settleCoinId": 4,
            "settleCoinName": "USD",
            "swapCoinId": 5,
            "swapCoinName": null,
            "symbol": "MATIC-USD",
            "classifyId": null,
            "visible": 0,
            "tradable": true,
            "status": null,
            "sort": null,
            "isDual": false,
            "faceMultiplier": "1",
            "isDelivery": false,
            "deliveryTime": null,
            "deliveryMarketPrice": null,
            "deliveryStatus": null,
            "takerTradeFeeRate": "0.06",
            "makerTradeFeeRate": "0.04",
            "pair": "MATIC-USD",
            "minCount": "10",
            "maxCount": "1000000",
            "brandExchange": null,
            "preMarket": null,
            "initMarkPrice": null,
            "releaseTime": null,
            "createTime": null
        }
    ],
    "sid": "1798296308348452865"
}
PreviousLast tradeNextWebSocket

Last updated 7 months ago

👨‍💻