Skip to content
Eden Engine

Hyperliquid OHLCV Candles (by Symbol & Interval)

omnial/hyperliquid-candles

Given a Hyperliquid market symbol, a candle interval, and a time window, returns a time series of OHLCV candles for that market -- open, high, low, close, base-asset volume, quote-asset volume, and trade count per interval -- ordered by open time ascending.

activeper callv1
Provider
Web & Business Data Network
Category
derivatives
Provider price
$0.03276 per call
Latency p50 / p95
— / —
Success rate
—
Verified
—

Provider list price; Omnial MCP charges provider cost plus a platform markup on top.

Contract

input_schema.json
{
  "type": "object",
  "required": [
    "symbol",
    "from",
    "to"
  ],
  "properties": {
    "to": {
      "type": "string",
      "minLength": 1,
      "description": "Window end (Unix seconds, an ISO datetime, or a bare UTC date; a bare date means the end of that day). Example: 2026-05-19."
    },
    "from": {
      "type": "string",
      "minLength": 1,
      "description": "Window start (Unix seconds, an ISO datetime, or a bare UTC date). Example: 2026-05-16."
    },
    "symbol": {
      "type": "string",
      "minLength": 1,
      "description": "Hyperliquid market id (for example BTC, kPEPE, xyz:GOLD, the canonical PURR/USDC spot pair, or an @index spot market). Example: SOL."
    },
    "interval": {
      "enum": [
        "1m",
        "3m",
        "5m",
        "15m",
        "30m",
        "1h",
        "2h",
        "4h",
        "8h",
        "12h",
        "1d",
        "3d",
        "1w",
        "1M"
      ],
      "type": "string",
      "default": "4h",
      "description": "Candle granularity. Example: 4h. Defaults to \"4h\"."
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "low": {
            "type": "number"
          },
          "high": {
            "type": "number"
          },
          "open": {
            "type": "number"
          },
          "close": {
            "type": "number"
          },
          "quote": {
            "type": "number",
            "description": "Quote-asset (dollar) volume traded during this candle."
          },
          "closed": {
            "type": "boolean",
            "description": "Whether this candle has finished forming. Observed true on every candle in both real fixtures (neither window's `to` reached the current time); an in-progress candle for the current interval was never observed, so a false value is expected but unconfirmed."
          },
          "symbol": {
            "type": "string",
            "description": "Echoes the requested market id."
          },
          "trades": {
            "type": "integer",
            "description": "Number of trades that occurred during this candle."
          },
          "volume": {
            "type": "number",
            "description": "Base-asset volume traded during this candle."
          },
          "interval": {
            "type": "string",
            "description": "Echoes the requested candle granularity."
          },
          "open_time": {
            "type": "integer",
            "description": "Unix seconds marking the start of this candle."
          },
          "close_time": {
            "type": "integer",
            "description": "Unix seconds marking the end of this candle."
          }
        },
        "additionalProperties": false
      },
      "description": "One entry per candle interval in the requested window, open_time ascending."
    },
    "meta": {
      "type": "object",
      "properties": {
        "limit": {
          "type": "integer",
          "description": "Matched `total` on both real fixtures observed."
        },
        "total": {
          "type": "integer",
          "description": "Number of candles returned, e.g. 72 or 15."
        },
        "cached": {
          "type": "boolean",
          "description": "Whether this response was served from the provider's cache. Observed false on both real fixtures."
        },
        "offset": {
          "type": "integer",
          "description": "0 on both real fixtures observed."
        }
      },
      "additionalProperties": false
    }
  },
  "description": "The candle response, as returned at routing.responseResultPath ($.output).",
  "additionalProperties": false
}

Pricing

Every real charge, itemised. A model that quietly omits one is a slow financial leak, so nothing here is rolled up, and a charge that only applies to some inputs says so rather than being added in.

Prices in this catalog are the provider's own list price, not your bill: Omnial MCP charges provider cost plus a platform markup on top, so what you are charged is higher than the figure shown. For the exact amount a specific call will cost, run omnial_execute with dry_run: true; that number includes the markup and is what we hold while the call runs. It is a quote, not a cap on the charge.

ChargeRate
Per call
Flat, regardless of what comes back
$0.03276
Cost basis
Not recorded

This tool's catalog entry does not record how its final bill is determined, so we will not tell you whether its cost is fixed before the call or reported by the provider afterwards. Either way what is held is a quote rather than a cap: you are charged what the call actually costs, bounded at 2x the quote.

Updated
Sep 15, 2026