Install
openclaw skills install data912Query Data912 market data endpoints for Argentina and USA instruments. Use when the user asks for MEP/CCL quotes, live Argentine market panels (stocks, optio...
openclaw skills install data912Query Data912's public market API for Argentina and USA market data snapshots, historical bars, and EOD derivatives analytics.
https://data912.com/live/mep (USD MEP)/live/ccl (USD CCL)/live/arg_stocks/live/arg_options/live/arg_cedears/live/arg_notes/live/arg_corp/live/arg_bonds/live/usa_adrs/live/usa_stocksExample:
curl -s "https://data912.com/live/arg_stocks" | jq '.[0:5]'
/historical/stocks/{ticker}/historical/cedears/{ticker}/historical/bonds/{ticker}Example:
curl -s "https://data912.com/historical/stocks/GGAL" | jq '.[0:10]'
/eod/volatilities/{ticker}/eod/option_chain/{ticker}Examples:
curl -s "https://data912.com/eod/volatilities/AAPL" | jq '.'
curl -s "https://data912.com/eod/option_chain/AAPL" | jq '.[0:10]'
/contact in this skill. Keep this skill focused on market data retrieval and interpretation./live/*)symbol: instrument ticker/symbolpx_bid, q_bid: bid price and bid sizepx_ask, q_ask: ask price and ask sizec: last/close-like traded valuepct_change: percentage variationv: volumeq_op: operations count (when provided)/historical/*/{ticker})date: date stringo, h, l, c: OHLC valuesv: volumedr: daily returnsa: additional numeric metric provided by source/eod/volatilities/{ticker})iv_s_term, iv_m_term, iv_l_termiv_*_percentilehv_s_term, hv_m_term, hv_l_termhv_*_percentileiv_hv_*_ratio, iv_fair_iv_ratiofair_iv, fair_iv_percentile/eod/option_chain/{ticker})opex, s_symbol, type, kbid, ask, c, oidelta, gamma, theta, vega, rhofair_value, fair_iv, itm_prob, intrinsic, otmr_days, r_tdays, hv_2m, hv_1yr/live/*/historical/*/{ticker}/eod/*/{ticker}curl -s and parse with jq.[], report: "No data currently available for this endpoint/ticker."120 req/min.When returning results to the user:
% change.For the full schema and endpoint definitions, see references/openapi-spec.json.