query_databento
Fetch real-time and historical market data from Databento for futures, equities, and crypto. Query OHLCV bars, trades, and quotes by specifying symbols, date ranges, and schemas for financial analysis.
Instructions
Fetch real-time and historical market data from Databento (CME futures, US equities, crypto). Read-only, billed per Databento usage. Use for OHLCV / trades / quotes on traditional instruments; use get_markets or search_markets for prediction-market contracts instead.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| symbols | Yes | Symbol list. Required, at least one. Examples: ["CL.c.0"] (front-month WTI), ["ES.c.0"] (S&P e-mini), ["AAPL"]. Continuous-contract suffix .c.0 means front month. | |
| dataset | No | Databento dataset code. Default: GLBX.MDP3 (CME Globex). Must match the venue of the requested symbols. | |
| schema | No | Databento schema. Default: trades. Other common values: ohlcv-1m, ohlcv-1d, mbp-1, tbbo, statistics. | |
| start | No | ISO-8601 start timestamp (inclusive). Omit for most recent data. | |
| end | No | ISO-8601 end timestamp (exclusive). Must be after start if both set. | |
| limit | No | Max records returned. Default 100. Hard cap 10000. |