Backpack · Example Payload

Backpack Markets List Example

CryptoExchangeWalletTradingPerpetualsSolanaWeb3DeFixNFTAnchorCoralCentralized ExchangeSelf-Custody

Backpack Markets List Example is an example object payload from Backpack, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "GET",
    "url": "https://api.backpack.exchange/api/v1/markets",
    "auth": "public"
  },
  "response": [
    {
      "symbol": "SOL_USDC",
      "baseSymbol": "SOL",
      "quoteSymbol": "USDC",
      "marketType": "SPOT",
      "filters": {
        "price": {
          "minPrice": "0.01",
          "maxPrice": "100000",
          "tickSize": "0.01"
        },
        "quantity": {
          "minQuantity": "0.01",
          "maxQuantity": "1000000",
          "stepSize": "0.01"
        }
      },
      "orderBookState": "Open"
    },
    {
      "symbol": "SOL_USDC_PERP",
      "baseSymbol": "SOL",
      "quoteSymbol": "USDC",
      "marketType": "PERP",
      "filters": {
        "price": {"minPrice": "0.01", "tickSize": "0.01"},
        "quantity": {"minQuantity": "0.01", "stepSize": "0.01"}
      },
      "fundingInterval": "8h",
      "orderBookState": "Open"
    }
  ]
}