Plain-language company data, ready for your app.

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.

Live example

Company Apple (AAPL)
Summary

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 ® .

Latest earnings

Missed expectations — $1.91 actual vs $1.9271 estimate (2026-06-30)

Key filings
  • 10-K filed 2025-10-31 — view
  • 10-Q filed 2026-07-31 — view
  • 8-K filed 2026-07-30 — view

This is GET /api/v1/company/AAPLsee the raw JSON here.

Quick start

Call it in your language:

cURL
curl https://zelothorn.com/api/v1/company/AAPL
Python
import requests
r = requests.get("https://zelothorn.com/api/v1/company/AAPL")
data = r.json()
print(data["summary"]["text"])
JavaScript
const res = await fetch("https://zelothorn.com/api/v1/company/AAPL");
const data = await res.json();
console.log(data.summary.text);

How to use it

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.

Get notified

Want an API key when paid tiers launch? Tell me here.