XBRL financial statements from 10-K and 10-Q filings, standardized across four Regulation S-X schemas so every filer maps to one comparable structure, plus precomputed metrics, ratios, and a 60+ factor library with percentile ranks. Free on the Community tier: 10,000 requests per day, 600 per minute.
11 endpoints on https://api.3spread.com. Full parameters and response schemas are in the API reference.
Every dataset is available on the free Community tier. Sign up, provision a key, and query it. No credit card.
curl "https://api.3spread.com/v1/financials?limit=10" \
-H "apikey: $THREESPREAD_API_KEY"from py3spread import Client
client = Client() # reads THREESPREAD_API_KEY
page = client.financials.list(limit=10)
for row in page["data"]:
print(row)Query a company's income statement, balance sheet, and cash flow from the API as a clean, consistent grid, no matter how the filer tagged it. About 40 lines of Python on a free key.
Pull 90 point-in-time factors with percentile ranks for a single company, then run a cross-company screen sorted by any factor. About 40 lines of Python on a free key.
All of them are included, free, on the same key.
Choose the path that fits your needs.
The Community tier is free: 10,000 requests per day (600 per minute), every dataset.