Documentation

Getting Started

Query S&P 500 segment data in under a minute — no signup, no API key.

No key required

The data API is free and open. Call the read endpoints — company search, segments, financials, comparisons — directly, with no account and no X-API-Key header. The base URL is https://finedgelabs.com/api/data.

Make your first request

Fetch Apple's reportable segments — no headers needed:

curl https://finedgelabs.com/api/data/companies/AAPL/segments

Or with Python:

import requests

resp = requests.get(
    "https://finedgelabs.com/api/data/companies/AAPL/segments",
)
data = resp.json()
for seg in data["segments"]:
    print(seg["name"], seg["revenue"])

Do I ever need an account?

Only for the optional dashboard — saved watchlists, Excel exports, and cross-company tooling. The data itself, on the site and through the API, is free and needs no signup. Create a free account only if you want those extras.

Next steps