Skip to main content

Endpoint

GET
string
https://api.llmquant.com/company/facts

Parameters

Required

ticker
string
required
The stock ticker symbol (e.g. AAPL, MSFT).

Response

facts
object
A CompanyFacts object.

Code Examples

import requests

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

url = "https://api.llmquant.com/company/facts?ticker=AAPL"

response = requests.get(url, headers=headers)
facts = response.json().get("facts")

print(facts["name"], "-", facts["sector"])
print(f"Market Cap: ${facts['market_cap']:,.0f}")