Skip to main content

Endpoint

GET
string
https://api.llmquant.com/prices/equity/snapshot

Parameters

Required

ticker
string
required
The stock ticker symbol (e.g. AAPL, TSLA). Supports comma-separated list for batch requests (e.g. AAPL,MSFT,NVDA).

Response

snapshots
array
Array of EquitySnapshot objects.

Code Examples

import requests

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

url = "https://api.llmquant.com/prices/equity/snapshot?ticker=AAPL"

response = requests.get(url, headers=headers)
snapshot = response.json().get("snapshots")[0]