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.

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.llmquant.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.llmquant.com

Authentication

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