JS
Jupyter
PY
MCP
GH
PYPI
tableau
excel
C
numpy
JS
Jupyter
PY
MCP
GH
PYPI
tableau
excel
C
numpy
GH
Deepseek
JS
Jupyter
PY
MCP
GH
PYPI
tableau
excel
C
numpy
GH
Deepseek
Vim
pandas
JS
Jupyter
PY
MCP
GH
PYPI
tableau
excel
C
numpy
GH
Deepseek
Vim
pandas
Airtable
OpenAI
pytorch
powerbi

Production-Ready
SDKs

Capabilities

Financial data SDKs that fit your needs

High Performance

Optimized market data clients with efficient serialization, connection reuse, and minimal overhead for demanding research workloads.

Authentication & Security

Built-in API key management, secure request handling, and enterprise-ready authentication workflows for your financial data API.

Type Safety

Strongly typed SDKs with autocomplete, request validation, and generated models, ideal for TypeScript financial API development.

Quick Integration

Install the financial data SDK, authenticate, and make your first request in minutes with concise APIs and practical examples.

Developer Experience

Clear documentation, comprehensive examples, and predictable interfaces designed for productivity.

Consistent APIs

Unified request patterns and data structures across the Python finance library, TypeScript clients, endpoints, and datasets.

An All-in-one Financial Data API For Building Alpha

Native Python libraries, JavaScript and TypeScript SDKs, C bindings, and AI agents plus a REST API for everything else.

API
$curl https://api.axionquant.com/
Python
$pip install axionquant-sdk
Javascript
$npm i @axionquant/sdk
C++
$gcc -c axion.c -o axion.o -lcurl -lcjson -fPIC
MCP
$npm i @axionquant/mcp
WORKFLOW

Fetch, Frame,
Graph

Pull historical market data through the Python financial data API, transform it into a dataframe, and generate visualizations with a few lines of code. Spend less time wiring tools together and more time analyzing markets.

price_candles.py
from axion import Axion, utils, visualize

client = Axion(api_key="your_api_key")

df = utils.df(
    client.stocks.prices(
        "NVDA",
        from_date=utils.d(utils.yearago),
        frame="daily",
    )
)

visualize.candles(df)
spot_direction.py
from axion import Axion, utils, visualize, ta

client = Axion(api_key="your_api_key")

df = utils.df(
    client.forex.prices(
        "EURUSD",
        from_date=utils.d(utils.yearago),
        frame="daily",
    )
)

df["ema_21"] = ta.ema(df, period=21)
df["ema_50"] = ta.ema(df, period=50)
df["rsi"]    = ta.rsi(df, period=14)

visualize.graph(
    df,
    x="date",
    lines=["close", "ema_21", "ema_50"],
    title="EUR/USD - Spot Direction",
)
company_profile.py
from axion import Axion

client = Axion(api_key="your_api_key")
ticker = "NVDA"

profile  = client.profiles.profile(ticker)
info     = client.profiles.info(ticker)
summary  = client.profiles.summary(ticker)
calendar = client.profiles.calendar(ticker)

sector   = profile["sector"]
industry = profile["industry"]
price    = summary["regularMarketPrice"]
high_52w = summary["fiftyTwoWeekHigh"]
earnings = calendar["earnings"]["earningsDate"]
cpi_inflation.py
from axion import Axion, utils, models, visualize

client = Axion(api_key="your_api_key")

cpi_id = client.econ.search("CPI all items")[0]["id"]
cpi = utils.df(client.econ.dataset(cpi_id))

# Convert price levels to a monthly inflation rate
cpi = utils.relativity(cpi, cols=["value"])

# Project inflation six months forward
forecast = models.linearRegression(
    cpi,
    x="date",
    target="relative_value",
    n_preds=6,
    scale="M"
)

visualize.line(cpi, x="date", y="relative_value")
sec_filings_monitor.py
from axion import Axion, utils

client = Axion(api_key="your_api_key")

watchlist = ["AAPL", "MSFT", "GOOGL", "TSLA", "META"]

def fetch_filings(row):
    t = row["ticker"]
    return (t, {
        "ticker":    t,
        "last_10k":  client.filings.recent(t, form="10-K", limit=1)[0]["date"],
        "last_10q":  client.filings.recent(t, form="10-Q", limit=1)[0]["date"],
        "recent_8k": client.filings.recent(t, form="8-K", limit=1)[0]["title"],
    })

filings_map = {}
utils.work(utils.df([{"ticker": t} for t in watchlist]), fetch_filings, filings_map)

df_filings = utils.df(list(filings_map.values()))
Features

Enterprise-grade financial data SDK clients, ready to deploy

Secure data isolation, full historical depth across your tools, and production-ready TypeScript financial API clients for every team.

Secure, Enterprise Vault

Connect using scoped API keys that are safe for both client and server contexts.

Deep historical search and knowledge

Connect your external applications and integrate financial intelligence across your entire stack with one financial data SDK.

GitHub
Slack
MS Excel
Vercel
Notion
Claude
Sentry
Atlassian
NumPy
PyTorch
Supabase
OneDrive
MCP
Google Sheets
TensorFlow
OpenAI
Airtable
Power BI
SAP
Pandas
Tableau
GitLab
AWS
Deepseek

Slides, spreadsheets, and documents

Produce polished financial analytics in slides, spreadsheets, and documents.

forecast_model.xlsx
ABC
Revenue$1.2M$1.5M$1.8M
COGS$520K$610K$720K
OpEx$180K$210K$240K
Gross Profit$680K$890K$1.08M
Marketing$90K$110K$135K
R&D$120K$145K$170K
Headcount424856
EBITDA$470K$635K$775K
Margin39.2%42.3%43.1%

And much more

Everything you need in one package - from quant research to algorithmic trading.

Daily and hourly market data

Query daily and hourly equities, crypto, forex, and alternative data with responses in milliseconds

Decades of historical depth

Retrieve full daily and hourly price history back to 1987, ready for backtesting and long-horizon research

Data-driven analytics

Build quantitative trading strategies and models using structured financial and historical datasets

Multi-source aggregation

Combine multiple data providers into a single unified API interface

Developer-first SDKs

Clean, typed SDKs for Python, TypeScript, and more with consistent APIs

Data visualization support

Power dashboards and charts using structured market and alternative datasets

Market replay tools

Reconstruct historical market movements for simulation and backtesting

Alerting & notifications

Trigger alerts for price movements, thresholds, and events across daily and hourly data

Structured data access

Retrieve normalized financial data across all supported asset classes

Alternative data insights

Analyze non-traditional datasets to uncover market signals and trends

Global market coverage

Access international exchanges and multi-region financial data seamlessly

Historical data access

Query deep historical datasets for research, modeling, and backtesting

Strategy development workflow

Build, test, and iterate on algorithmic trading strategies using clean API primitives

Flexible API configuration

Customize endpoints, filters, and data granularity per use case

Export & integration ready

Easily pipe data into your existing trading systems and analytics tools

Cloud-native infrastructure

Reliable, scalable APIs designed for production financial systems

Consistent developer experience

Unified behavior across SDKs and REST interfaces

Pricing That Scales With You

Flexible plans for developers, startups, and enterprises. Access comprehensive market data, fundamental data, and alternative data through a single financial data API.

Free
Starter
Pro
Enterprise
Pricing
Free
$49.99/mo
$199.99/mo
Custom
Free
$39.99/mo
Billed annually
$159.99/mo
Billed annually
Custom
API Limits
1,000
50,000
1,000,000
Unlimited
Historical Data
1 Year
25 Years
+50 (unlimited)
Unlimited
Data Access
Free
Pricing
Monthly price
Free
Annual price
Free
API Limits
Monthly API calls
1,000
Historical Data
Record availability
1 Year
Data Access
Stocks
ETFs
Forex
Futures
Indices
Crypto
Corporate Intelligence
Earnings
Filings & Financials
Economic Data
News
Credit Ratings
ESG Rankings
Supply Chain
Sentiment Analysis
Web Traffic
Starter
Pricing
Monthly price
$49.99/mo
Annual price
$39.99/mo
Billed annually
API Limits
Monthly API calls
50,000
Historical Data
Record availability
25 Years
Data Access
Stocks
ETFs
Forex
Futures
Indices
Crypto
Corporate Intelligence
Earnings
Filings & Financials
Economic Data
News
Credit Ratings
ESG Rankings
Supply Chain
Sentiment Analysis
Web Traffic
Pro
Pricing
Monthly price
$199.99/mo
Annual price
$159.99/mo
Billed annually
API Limits
Monthly API calls
1,000,000
Historical Data
Record availability
+50 (unlimited)
Data Access
Stocks
ETFs
Forex
Futures
Indices
Crypto
Corporate Intelligence
Earnings
Filings & Financials
Economic Data
News
Credit Ratings
ESG Rankings
Supply Chain
Sentiment Analysis
Web Traffic
Enterprise
Pricing
Monthly price
Custom
Annual price
Custom
API Limits
Monthly API calls
Unlimited
Historical Data
Record availability
Unlimited
Data Access
Stocks
ETFs
Forex
Futures
Indices
Crypto
Corporate Intelligence
Earnings
Filings & Financials
Economic Data
News
Credit Ratings
ESG Rankings
Supply Chain
Sentiment Analysis
Web Traffic

Start Building with the AxionQuant Financial Data API

Join thousands of developers and quants using AxionQuant to power financial applications with market data, fundamentals, and alternative data. Grab your free API key and start pulling stock market data in minutes.

No credit card required • free tier is free forever