Financial Data
Databento — Institutional Market Data (OPRA + CME + Nasdaq Tick)
premiumDatabento — Institutional Market Data (OPRA + CME + Nasdaq Tick) is an enterprise-grade financial data provider offering Options Tick Data, Futures Tick Data, Order Book (L2/L3) through Aweb's unified API. It features full streaming support with premium-tier latency.
Specifications
Capabilities (3)
Quick start
Use Databento — Institutional Market Data (OPRA + CME + Nasdaq Tick) through Aweb's unified API — no provider-specific SDK needed.
cURL
curl -X POST https://api.aweb.studio/v1/execute \
-H "Authorization: Bearer $AWEB_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"provider": "databento",
"capability": "finance.options-tick",
"input": { "prompt": "Hello from Databento — Institutional Market Data (OPRA + CME + Nasdaq Tick)!" }
}'TypeScript
import { Aweb } from '@aweb/core';
const aweb = new Aweb({ apiKey: process.env.AWEB_API_KEY });
const result = await aweb.execute({
provider: 'databento',
capability: 'finance.options-tick',
input: { prompt: 'Hello from Databento — Institutional Market Data (OPRA + CME + Nasdaq Tick)!' },
});
console.log(result.output);