Skip to main content
GET
/
v1
/
perps
/
markets
curl https://api.yield.xyz/v1/perps/markets \
  -H "x-api-key: your_api_key"

Documentation Index

Fetch the complete documentation index at: https://yieldxyz.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

List Markets

Returns all available perpetual markets across providers.
curl https://api.yield.xyz/v1/perps/markets \
  -H "x-api-key: your_api_key"

Query Parameters

ParameterTypeDescription
providerstringFilter by provider
assetstringFilter by base asset (BTC, ETH)

Response

{
  "markets": [
    {
      "id": "BTC-USD-PERP",
      "provider": "hyperliquid",
      "baseAsset": "BTC",
      "quoteAsset": "USD",
      "maxLeverage": 50,
      "fundingRate": 0.0001,
      "openInterest": "150000000"
    }
  ]
}