Cascade
Markets

Get Summary

Retrieve a market summary including 24-hour volume, open interest, and other key metrics

GET
/summary/{symbol}

Path Parameters

symbolstring

Identifies the market for which information is desired

Response Body

application/json

text/plain

curl -X GET "https://matcher.cascade.xyz/summary/ETHUSD"
{
  "bestBid": {
    "price": "3660.02",
    "quantity": "0.12"
  },
  "bestOffer": {
    "price": "3660.13",
    "quantity": "0.075"
  },
  "change": "-0.017162",
  "fundingRate": "-0.00032",
  "openInterest": "1508712.3429",
  "time": 1752798506000,
  "volume": "387267.23"
}
"Symbol not found"