The Zelothorn API returns what a company does, how it makes money, whether its latest earnings beat or missed expectations, and its official SEC filings — all as structured JSON.
The Company designs, manufactures and markets smartphones, personal computers, tablets, wearables and accessories, and sells a variety of related services. The Company’s fiscal year is the 52- or 53-week period that ends on the last Saturday of September. Mac ® is the Company’s line of personal computers based on its macOS ® operating system. The Mac line includes laptops MacBook Air ® and MacBook Pro ® , as well as desktops iMac ® , Mac mini ® , Mac Studio ® and Mac Pro ® .
Missed expectations — $1.91 actual vs $1.9271 estimate (2026-06-30)
This is GET /api/v1/company/AAPL —
see the raw JSON here.
Call it in your language:
curl https://zelothorn.com/api/v1/company/AAPL
import requests
r = requests.get("https://zelothorn.com/api/v1/company/AAPL")
data = r.json()
print(data["summary"]["text"])
const res = await fetch("https://zelothorn.com/api/v1/company/AAPL");
const data = await res.json();
console.log(data.summary.text);
Endpoint: /api/v1/company/:ticker
Method: GET
Example: https://zelothorn.com/api/v1/company/MSFT
Top-level fields returned:
Rate limits: The free API allows 20 requests per minute, per IP
address. If you exceed it you'll get a 429 (Too Many Requests) response
with a JSON error message — space your requests out, or add simple retry logic that
waits a moment and tries again.
Want an API key when paid tiers launch? Tell me here.