API Reference

Return details for a specific product by id

productID values can be queried from List Products

Example response:

{  
  "id": 1002,                                                        // the product id of the instrument  
  "type": "PERP",                                                    // the type of product  
  "symbol": "ethperp",                                               // the symbol of the product  
  "active": true,                                                    // whether the product is tradeable  
  "baseAsset": "WETH",                                               // the symbol of the base asset of the instrument  
  "quoteAsset": "USDB",                                              // the symbol of the quote asset of the instrument  
  "minQuantity": "100000000000000",                                  // the minimum quantity allowed for a single order  
  "maxQuantity": "100000000000000000000000",                         // the maximum quantity allowed for a single order  
  "increment": "10000000000000",                                     // the minimum price tick  
  "takerFee": "200000000000000",                                     // taker fee in bips e.g. 2e14 = 2bps  
  "makerFee": "50000000000000",                                      // maker fee in bips e.g. 5e13 = 0.5bps  
  "isMakerRebate": true,                                             // is the maker fee being returned to the maker instead of charged to them  
  "initialLongWeight": "950000000000000000",                         // the initial margin risk weight for longs  
  "initialShortWeight": "1050000000000000000",                       // the initial margin risk weight for shorts  
  "maintenanceLongWeight": "970000000000000000",                     // the maintenance margin risk weight for longs  
  "maintenanceShortWeight": "1030000000000000000",                   // the maintenance margin risk weight for shorts  
  "minLimitPriceMultiplier": "250000000000000000",                   // the minimum allowed limit order price is the minLimitPriceMultiplier x markPrice  
  "maxLimitPriceMultiplier": "4000000000000000000",                  // the maximum allowed limit order price is the maxLimitPriceMultiplier x markPrice  
  "oiDollarCap": "1000000000000000000000000000000",                  // the maximum allowed open interest for the product in dollars, above this orders that add open interest will be rejected only orders that reduce open interest are allowed  
  "baseAssetAddress": "0x4200000000000000000000000000000000000023",  // address of the base asset  
  "quoteAssetAddress": "0x79a59c326c715ac2d31c169c85d1232319e341ce", // address of the quote asset  
  "markPrice": "3104025893791460427908"                              // mark price of the instrument  
}

Language
Click Try It! to start a request and see the response here!