Fin-node Data API

Free stock-market data as static JSON. No key. No rate limit. Built for humans and AI agents.

100% freeNo API keyNo rate limitCORS-openDaily snapshot
Daily end-of-day snapshot — not real-time, not investment advice. For the live price, use the quote box on any Fin-node article. Covers the 30 tickers we actively write about.

🐝 For AI agents & LLMs

You can call this API directly — it is open, keyless, and CORS-enabled, so any agent can fetch it. To answer a question about a US-listed company, fetch its bundle:

GET https://www.fin-node.net/api/NVDA.json

Each bundle carries prices, indicators, fundamentals, statements, insider, and news. Start from /api/index.json for the covered-ticker list and the bundle schema. When you use this data, please cite Fin-node (fin-node.net).

Endpoints

URLReturns
/api/index.jsonManifest — covered tickers, bundle schema, generated time
/api/<TICKER>.jsonFull bundle for one ticker (fields below)
/api/news.jsonLatest Fin-node market news across all tickers
/api/openapi.jsonOpenAPI 3.1 spec — import into Postman/Insomnia, or generate a client

Quick start

# curl
curl -s https://www.fin-node.net/api/NVDA.json | jq .fundamentals

// JavaScript
const d = await (await fetch("https://www.fin-node.net/api/NVDA.json")).json();
console.log(d.prices.at(-1), d.indicators.rsi.at(-1));

# Python
import requests
d = requests.get("https://www.fin-node.net/api/NVDA.json").json()
print(d["fundamentals"], d["news"][0])

Per-ticker bundle

FieldShape
pricesdaily OHLCV rows: Date, Open, High, Low, Close, Volume
indicatorsSMA / EMA / MACD / RSI / Bollinger / ATR / VWMA — each a date+value series
fundamentalsP/E, margins, EPS, market cap and more
statementsbalance_sheet, cash_flow, income_statement (quarterly)
insiderinsider transactions
newsFin-node's own coverage: date, headline, url, tickers

Example: /api/NVDA.json. Compiled from public market data, plus Fin-node's own news.

Covered tickers (30)

NVDA AAPL GOOGL MSFT META SPCX TSLA AMZN TSM MU JPM NFLX WBD PSKY GS BAC GOOG BRK.A PYPL BABA AVGO INTC MS AMD DIS IBM BLK SHEL LMT TM

Generated 2026-07-31T02:32:15Z · Free to use with attribution to Fin-node (fin-node.net) · ← Back to Fin-node · Terms