Endpoint
https://api.llmquant.com/company/facts
Parameters
Required
The stock ticker symbol (e.g. AAPL, MSFT).
Response
A CompanyFacts object.
Primary exchange (e.g. NASDAQ, NYSE).
Country of incorporation (ISO 3166-1 alpha-2).
Reporting currency (e.g. USD).
Current market capitalization.
Total shares outstanding.
Number of full-time employees.
Fiscal year end month (e.g. December, September).
Last updated timestamp (ISO 8601).
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}")