Skip to main content

LLMQuant Data API

LLMQuant Data provides unified access to financial data and proprietary quantitative knowledge — built for developers and AI agents.

Proprietary Knowledge

Search thousands of quant concepts, strategies, and paper summaries from Quant Wiki and Quant Paper.

Market Prices

Historical and real-time price data for US equities and crypto assets.

Financial Statements

Standardized income statements, balance sheets, and cash flow statements.

MCP Server

Let AI agents natively consume financial data via the Model Context Protocol.

Quick Start

1. Get your API key from the Dashboard. 2. Make your first request:
import requests

headers = {"X-API-KEY": "your_api_key_here"}

url = "https://api.llmquantdata.com/prices/equity/historical?ticker=AAPL&period=day&limit=5"
response = requests.get(url, headers=headers)
data = response.json()
3. Explore the API using the reference docs in the sidebar.

Base URL

https://api.llmquantdata.com

Authentication

All endpoints require an API key passed via the X-API-KEY header. See Authentication for details.