Skip to main content

Quote Views

gfin splits symbol data into focused quote views. Start with the smallest view that satisfies your workflow.

ViewRouteUse when
Summary/v1/quote/{symbol}/summaryYou need the compact quote overview.
Details/v1/quote/{symbol}/detailsYou need richer quote-page detail.
Entity details/v1/quote/{symbol}/entity-detailsYou need entity-level descriptors.
History/v1/quote/{symbol}/historyYou need historical pricing payloads.
Financials/v1/quote/{symbol}/financialsYou need financial statement data.
Earnings/v1/quote/{symbol}/earningsYou need earnings-related data.
Related/v1/quote/{symbol}/relatedYou need related entities.
Sentiment/v1/quote/{symbol}/sentimentYou need sentiment payloads when available.

Examples

curl "https://api.gfin.dev/v1/quote/AAPL/summary?exchange=NASDAQ"
curl "https://api.gfin.dev/v1/quote/AAPL/financials?exchange=NASDAQ"
curl "https://api.gfin.dev/v1/quote/AAPL/earnings?exchange=NASDAQ"
client.quote_summary("AAPL", exchange="NASDAQ")
client.quote_financials("AAPL", exchange="NASDAQ")
client.quote_earnings("AAPL", exchange="NASDAQ")
await client.quoteSummary("AAPL", { exchange: "NASDAQ" });
await client.quoteFinancials("AAPL", { exchange: "NASDAQ" });
await client.quoteEarnings("AAPL", { exchange: "NASDAQ" });

View Selection

Use summary for lists and UI cards. Use details or entity details when a user opens a symbol page. Use financials, earnings, related, and sentiment only when the product surface needs those datasets.