MMTMMT Docs

Get volume profile

Returns volume profile data with buy/sell volumes at each price level. Supports aggregated exchanges (requires tier permission). Cost multiplier: 4x. Max 20,000 data points per request.

GET
/api/v1/volumes

Returns volume profile data with buy/sell volumes at each price level. Supports aggregated exchanges (requires tier permission). Cost multiplier: 4x. Max 20,000 data points per request.

Authorization

ApiKeyAuth
X-API-Key<token>

API key for authentication. Obtain from the MMT dashboard. Keep secret and use only from your backend; never expose in browser/mobile clients.

In: header

Query Parameters

exchange*string

Exchange identifier (e.g. binancef, bybitf, okx). Some endpoints support aggregation via colon-separated values (e.g. binancef:bybitf).

symbol*string

Trading pair in base/quote format.

tf*string

Timeframe string for REST requests. Examples: 1m, 5m, 1h, 1d, 1W, 1M. Allowed range: minimum 1m, maximum 1M (1 month).

from*integer

Start of time range as a Unix timestamp (seconds).

Formatint64
to*integer

End of time range as a Unix timestamp (seconds). Must be greater than from.

Formatint64
format?string

Response format. Defaults to json. Set to cbor for binary CBOR encoding.

Value in"json" | "cbor"

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://eu-central-1.mmt.gg/api/v1/volumes?exchange=binancef&symbol=btc%2Fusd&tf=1m&from=1738368000&to=1738382400"
{
  "data": [
    {
      "t": 0,
      "p": [
        0
      ],
      "b": [
        0
      ],
      "s": [
        0
      ],
      "pg": 0
    }
  ],
  "exchange": "string",
  "symbol": "string",
  "tf": "string",
  "from": 0,
  "to": 0,
  "points": 0
}
{
  "error": {
    "code": "INVALID_PARAMS",
    "message": "Invalid request parameters",
    "details": {}
  }
}
{
  "error": {
    "code": "INVALID_PARAMS",
    "message": "Invalid request parameters",
    "details": {}
  }
}
{
  "error": {
    "code": "INVALID_PARAMS",
    "message": "Invalid request parameters",
    "details": {}
  }
}
{
  "error": {
    "code": "INVALID_PARAMS",
    "message": "Invalid request parameters",
    "details": {}
  }
}
{
  "error": {
    "code": "INVALID_PARAMS",
    "message": "Invalid request parameters",
    "details": {}
  }
}