Everything you need to integrate FinEdge Labs segment data into your applications — free, no API key required.
pip install requests
import requests
response = requests.get(
"https://finedgelabs.com/api/data/companies/AAPL/segments",
)
for seg in response.json()["segments"]:
print(seg["name"], seg["revenue"])Base URL: https://finedgelabs.com/api/data
/companies/searchSearch companies by ticker or name
Params: q (required), limit
/companies/{cik}/segmentsSegment financials for a company
Params: cik (path), segment_type, years
/companies/{cik}/geographicGeographic revenue breakdown
Params: cik (path)
/companies/{cik}/filingsFiling history
Params: cik (path), form_type
/export/segments/{ticker}Download an Excel workbook of segment data
Params: ticker (path), years
None required. The public read endpoints are free and open — no API key and no signup. Just call the base URL:
curl https://finedgelabs.com/api/data/companies/search?q=AAPL
A free account is optional — it adds the dashboard (saved watchlists, Excel exports, and cross-company tooling).