Skip to main content
GET
/
api
/
v1
/
perps
/
markets
List perp markets
curl --request GET \
  --url https://api.alpha-labs.trade/api/v1/perps/markets \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "symbol": "<string>",
      "assetId": 123,
      "marketPubkey": "<string>",
      "splinePubkey": "<string>",
      "baseAsset": "<string>",
      "name": "<string>",
      "logoUrl": "<string>",
      "coingeckoId": "<string>",
      "tickSize": 123,
      "baseLotsDecimals": 123,
      "takerFeeBps": "4.27",
      "makerFeeBps": "4.27",
      "leverageTiersJson": "<string>",
      "riskFactorsJson": "<string>",
      "fundingIntervalSeconds": 123,
      "fundingPeriodSeconds": 123,
      "maxFundingRatePerInterval": 123,
      "openInterestCapBaseLots": "<string>",
      "maxLiquidationSizeBaseLots": "<string>",
      "isolatedOnly": true,
      "marketStatus": "<string>",
      "markPriceUsd": "12.50",
      "midPriceUsd": "12.50",
      "oraclePriceUsd": "12.50",
      "fundingRatePercentage": "4.27",
      "openInterestBaseLots": "4.27",
      "volume24hUsd": "12.50",
      "priceChange24hPct": "4.27",
      "prevDayPriceUsd": "12.50"
    }
  ]
}

Authorizations

Authorization
string
header
required

Send your API key as Authorization: Bearer murmo_.... Keys are created in the Murmo app. Header-only — keys are never read from the query string. Valid for the REST API under /api/v1 only (not the GraphQL endpoint).

Response

Markets.

data
object[]