Provenance
Freshness & coverage
Methods (6)
getQuote
readLatest price snapshot for one symbol (e.g. CL=F for WTI, FANG for Diamondback).
Input schema
{ "type": "object", "properties": { "symbol": { "type": "string" } }, "additionalProperties": false }getQuotes
readLatest snapshots for up to 25 symbols.
Input schema
{ "type": "object", "properties": { "symbols": { "type": "array", "items": { "type": "string" } } }, "additionalProperties": false }getChart
readHistorical OHLC series. Args: symbol, range (1d..max), interval (1m..1mo).
Input schema
{ "type": "object", "properties": { "symbol": { "type": "string" }, "range": { "type": "string" }, "interval": { "type": "string" } }, "additionalProperties": false }getEnergyFutures
readWTI, Brent, Henry Hub, RBOB, and heating oil snapshots in one call.
Input schema
{ "type": "object", "properties": {}, "additionalProperties": false }searchSymbols
readLook up a ticker by company name or symbol (e.g. "diamondback" → FANG).
Input schema
{ "type": "object", "properties": { "query": { "type": "string" } }, "additionalProperties": false }getServiceInfo
readConnector surface, energy futures symbols, and usage notes.
Input schema
{ "type": "object", "properties": {}, "additionalProperties": false }
