Skip to main content
GET
Tickers get_earnings accepts

Authorizations

X-API-KEY
string
header
required

The caller's own Monid API key (get one at https://monid.ai?fpr=dhruv-15136b). Passed straight through to Monid on every call, so usage bills the caller's own wallet — this is never a shared server-side credential, and the server never logs or stores it. Missing, empty, or malformed values answer 401 unauthorized before any paid call is attempted.

Query Parameters

limit
integer
default:1000

Page size: how many tickers this page returns (default 1000, max 5000). Does not affect total, which is always the full accept-universe size.

Required range: 1 <= x <= 5000
cursor
string

Opaque base64url pagination cursor from a previous response's next_page_url. Omit for the first page.

Response

Illustrative example, truncated for readability and not a captured API sample: a real page holds up to limit (default 1000) tickers. next_page_url is present whenever more of the ~3,227-ticker universe remains beyond this page.

Shared response shape for every list*Tickers coverage-list route (go/service/coverage.go's catalogListResponse). All eight routes draw from the exact same ~3,227-ticker US equity catalog (DefiLlama's /equities/v1/companies-list, country=US, deduped/upper-cased/sorted ascending): tickers and total describe the universe of tickers this particular route will ACCEPT as an input ticker, never a claim that every one of them has data for that specific dataset - this server has not measured per-dataset coverage. total is always the full matched universe size, independent of limit/cursor; tickers is the current page, sorted ascending.

resource
string
required

Label identifying which route this catalog answers for (e.g. "kpi", "institutional_holdings") - not a per-dataset coverage claim, just this response's own identity.

total
integer
required

Full accept-universe size (~3,227 at last measurement), independent of limit/cursor.

tickers
string[]
required

This page's tickers, upper-cased and sorted ascending.

next_page_url
string<uri>

Present only when more tickers remain beyond this page.