Data912 — data912.com API

SkillDev tools

Argentine market API: stocks, CEDEARs, bonds, MEP, CCL with live and historical (OHLC) data.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the Data912 — data912.com API skill

What this skill tells your AI

The instructions your AI receives, as published by gauss314/skills in skills/data912/SKILL.md and read by ahel’s review.

API gratuita con datos del mercado argentino. Refresca cada 20 segundos, rate limit 120 req/min.

Base URL: https://data912.com

Endpoints Live

Consultar precios en tiempo real:

EndpointDescripción
/live/mepUSD MEP implícito
/live/cclUSD CCL implícito
/live/arg_stocksAcciones argentinas
/live/arg_optionsOpciones
/live/arg_cedearsCEDEARs
/live/arg_notesNotas gubernamentales
/live/arg_corpDeuda corporativa
/live/arg_bondsBonos gubernamentales
/live/usa_adrsADRs estadounidenses
/live/usa_stocksAcciones estadounidenses

Ejemplo live

import requests
r = requests.get("https://data912.com/live/arg_stocks")
df = pd.DataFrame(r.json())

Endpoints Históricos (OHLC)

Descargá el catálogo de tickers en ./references/tickers_stocks.md, ./references/tickers_cedears.md y ./references/tickers_bonds.md.

EndpointDescripción
/historical/stocks/{ticker}OHLC de acciones argentinas
/historical/cedears/{ticker}OHLC de CEDEARs
/historical/bonds/{ticker}OHLC de bonos

Ejemplo histórico

ticker = "GGAL"
r = requests.get(f"https://data912.com/historical/stocks/{ticker}")
df = pd.DataFrame(r.json())
df["date"] = pd.to_datetime(df["date"])
df = df.set_index("date").sort_index()

Campos OHLC: date, o (open), h (high), l (low), c (close), v (volume), dr (daily return), sa (sigma annualized)

Volatilidades (EOD)

ticker = "YPF"
r = requests.get(f"https://data912.com/eod/volatilities/{ticker}")

Campos: IV short/medium/long term, HV short/medium/long term, IV/HV ratios y percentiles, fair IV.

Descargar CSV de históricos

Usá el script ./scripts/download_historical.py:

python ./scripts/download_historical.py --type stocks --tickers GGAL,PAMP,YPFD --output data/
python ./scripts/download_historical.py --type cedears --tickers AAPL,GOOGL,MSFT --output data/
python ./scripts/download_historical.py --type bonds --tickers AL30,GD30,GD35 --output data/
python ./scripts/download_historical.py --type all --tickers GGAL,AL30,AAPL --output data/

Rate Limits

  • 120 requests/minuto por endpoint
  • Datos refresh cada 20 segundos (no es real-time real)
  • Sin autenticación requerida

Signals

GitHub stars
240
Forks
35
Last commit
Jun 2026
Advanced
Catalog kind
skill
Gateway key
data912
Source
github.com/gauss314/skills