Skip to main content
GET
Get a live financial-metrics snapshot
This route returns a single current snapshot, market cap, P/E, EV/EBITDA, and margins, sourced from Monid’s DefiLlama /equities/v1/summary endpoint. Because this snapshot carries a live price, its valuation fields are populated where Historical leaves them out.

What this answers

  • What a company’s current market cap and P/E ratio are, right now.

Coverage

Query rules

ticker is required, and it is the only parameter this route accepts. Fields the FinancialMetricSnapshot schema declares but our own live captures never populate: currency, enterprise_value_to_revenue_ratio, free_cash_flow_yield, peg_ratio, return_on_equity, return_on_assets, return_on_invested_capital, asset_turnover, inventory_turnover, receivables_turnover, days_sales_outstanding, operating_cycle, working_capital_turnover, current_ratio, quick_ratio, cash_ratio, operating_cash_flow_ratio, debt_to_equity, debt_to_assets, interest_coverage, revenue_growth, earnings_growth, book_value_growth, earnings_per_share_growth, free_cash_flow_growth, operating_income_growth, ebitda_growth, payout_ratio, earnings_per_share, book_value_per_share, free_cash_flow_per_share. These are schema-legal and left out of the response rather than guessed.

Worked example

curl
Response

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

ticker
string
required

Uppercase-normalized ticker symbol (1-20 letters/digits/dots/hyphens).

Response

Real AAPL snapshot captured from our own live API (docs/our-live-samples/metrics_snapshot.json).

Snapshot envelope: {"snapshot": {...}}.

snapshot
FinancialMetricSnapshot · object
required

Live financial-metric snapshot for one ticker, derived from the current market summary. Every field is a pointer with omitempty in the Go source: unsourced values are omitted from the response, never nulled or fabricated.