Intrinio Data Parser & API
Intrinio is a developer-focused US financial data vendor providing real-time and historical equity prices, company fundamentals, earnings estimates and standardized financial statements, and StockAPIS extracts its data — quotes, ratios, income/balance/cash-flow statements and corporate actions — through a single unified REST API. Intrinio offers an official REST API, and StockAPIS normalizes it to the same schema you use for every other source, so you can query Intrinio fundamentals alongside Polygon, Finnhub or Yahoo Finance without maintaining separate integrations.
| Type | Financial data API / vendor |
|---|---|
| HQ | United States (St. Petersburg, FL) |
| Owner | Intrinio, Inc. |
| Asset classes | US equities, ETFs, Options, Forex, Crypto, Economic data |
| Coverage | US equities, ETFs, options, forex & fundamentals |
| Scale | Mid-tier developer-focused fundamentals vendor |
| API access | Official API |
| Parse priority | ★★★☆☆ |
| Official site | intrinio.com |
Platform Overview
Market Position
- A US-based, developer-first financial data marketplace headquartered in St. Petersburg, Florida
- Known for clean, well-documented APIs and standardized “as-reported” plus normalized fundamentals
- Modular, marketplace pricing — buy only the equity, options, forex or fundamentals feeds you need
- Official REST API plus WebSocket streaming, complemented by StockAPIS’s unified normalization
Data Coverage
StockAPIS exposes the core of the Intrinio data surface:
- Market data — real-time and historical prices, volume, market cap, intraday and EOD quotes
- Fundamentals — standardized income statements, balance sheets and cash-flow statements
- Financial ratios — P/E, P/B, ROE, ROA, debt and liquidity metrics
- Earnings — quarterly results, analyst estimates and earnings surprises
- Corporate actions — dividends, splits and earnings announcements
- Reference & economic data — security metadata (CIK, FIGI, LEI) and economic indicators
Quick Start
import stockapis
client = stockapis.Client(api_key="your-api-key")
# Real-time quote for a US equity via Intrinio
quote = client.intrinio.get_quote(symbol="AAPL")
print(f"Apple: ${quote['last_price']} · vol {quote['volume']:,}")const { StockAPIS } = require("stockapis");
const client = new StockAPIS({ apiKey: "your-api-key" });
// Standardized income statement (annual)
const income = await client.intrinio.getFundamentals({
symbol: "AAPL",
statement: "income_statement",
period: "annual",
});
console.log(income.revenue, income.net_income);Sample API Response
{
"success": true,
"data": {
"ticker": "AAPL",
"name": "Apple Inc.",
"cik": "320193",
"composite_figi": "BBG000B9XRY4",
"lei": "HWUPKR0MPOU8FGXBT394",
"last_price": 185.14,
"last_price_time": "2024-01-15T10:30:00.000Z",
"last_price_open": 185.59,
"last_price_high": 187.05,
"last_price_low": 184.93,
"last_price_volume": 48591690,
"last_price_change": 2.45,
"last_price_change_percent": 1.34,
"market_cap": 2870000000000,
"pe_ratio": 30.8,
"eps": 6.01,
"52_week_high": 198.23,
"52_week_low": 124.17
},
"metadata": {
"source": "intrinio",
"timestamp": "2024-01-15T10:30:00.000Z",
"cache_hit": false
}
}Use Cases
- Fundamental analysis — pull standardized income, balance-sheet and cash-flow data for valuation and DCF models
- Quant research & screening — screen US equities on P/E, ROE, EPS and other ratios at scale
- Earnings tracking — monitor quarterly results, analyst estimates and surprises across a watchlist
- Financial apps & dashboards — power portfolio tools and research platforms with clean, normalized fundamentals
Frequently Asked Questions
Does Intrinio have an official API? Yes — Intrinio provides an official REST API (plus WebSocket streaming) across modular data packages. StockAPIS wraps it in a unified schema so Intrinio data matches every other source you pull.
What data can I get from Intrinio through StockAPIS? Real-time and historical prices, company fundamentals, standardized income/balance/cash-flow statements, financial ratios, earnings estimates and corporate actions for US equities, ETFs, options and forex.
Is Intrinio data normalized? Yes — Intrinio is known for standardized “as-reported” and normalized fundamentals, and StockAPIS further maps it to a single cross-vendor schema so you query it like any other source.