Skip to main content
Artemis covers 2,985 public companies under an eq- prefix, on the same endpoint as everything else. Fundamentals come from company filings and update on the reporting calendar; valuation multiples are computed daily against the current price.

Quarterly fundamentals

Revenue, in billions: Net income over the same quarters separates them further: Coinbase has printed three consecutive losses (-$0.658B, -$0.394B, -$0.359B) while Robinhood earned $0.561B in Q2 2026, its second-best quarter on record.
Financial statement line items follow the company’s fiscal calendar and are labelled by period end, so Q2 2026 arrives as 2026-06-30. Ordinary daily series, including equity PRICE, label a QUARTER bucket by the period’s first day. Match on calendar span rather than on the date string when you put the two together.

Valuation multiples

Multiples are a daily series, so ask for a short window and take the last value:
On 2026-08-06: Robinhood trades at two and a half times Coinbase’s revenue multiple. The fundamentals table above is the reason: Coinbase’s revenue is down 35% from its Q4 2025 peak and into losses, while Robinhood set an all-time revenue high in the same quarter. Put the two tables next to each other and the multiple gap stops looking like a puzzle.

Not every line item exists for every company

Companies report what their business requires, so a comp table across four names will not come back as a full rectangle. Two different shapes signal it, and robust code handles both. A line item the company does not report returns a string in the data position instead of an array:
A ratio derived from that line item still returns a well-formed array, with null values:
That second case is why Robinhood’s EV / EBITDA cell is empty above rather than absent. Check the type, then check the value:
Across the four companies above, EBITDA and OPERATING_INCOME are absent for Robinhood, and FREE_CASH_FLOW for both Robinhood and Coinbase. The other four line items are present for all of them. Confirm what a given company reports before building the request:

Company-specific KPIs

The comparable core is a small fraction of what is there. Coinbase exposes 2,367 metrics and NVIDIA 1,388, drawn from the operating detail in their filings rather than the standard statements. That is where the segment-level numbers live:
A 39% drop in consumer volume over two quarters is the operating driver underneath the revenue decline in the first table. Enumerate a company’s full vocabulary with /supported-metrics/ and read the label and description on each entry.

The comparable core

Seven comparable P&L line items: TOTAL_REVENUE, NET_INCOME, EBITDA, OPERATING_INCOME, FREE_CASH_FLOW, BASIC_EPS, DILUTED_EPS. Seven valuation ratios, computed daily: ENTERPRISE_VALUE_DIVIDE_TOTAL_REVENUE, ENTERPRISE_VALUE_DIVIDE_EBITDA, EARNINGS_YIELD, FCF_YIELD, and the price and market-cap series they are built from. Full metric list and coverage detail: Equities. For the crypto-side equivalent of this analysis, see Crypto protocol economics.