Skip to main content
GET
/
api
/
v1
/
perps
/
markets
/
{symbol}
Perp market by symbol
curl --request GET \
  --url https://api.alpha-labs.trade/api/v1/perps/markets/{symbol} \
  --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).

Path Parameters

symbol
string
required

Response

Market.

data
object

A perp market. Live price/funding/volume fields are full-precision decimal strings; fee fields and structural ints are as typed.