Quote Views
gfin splits symbol data into focused quote views. Start with the smallest view that satisfies your workflow.
| View | Route | Use when |
|---|---|---|
| Summary | /v1/quote/{symbol}/summary | You need the compact quote overview. |
| Details | /v1/quote/{symbol}/details | You need richer quote-page detail. |
| Entity details | /v1/quote/{symbol}/entity-details | You need entity-level descriptors. |
| History | /v1/quote/{symbol}/history | You need historical pricing payloads. |
| Financials | /v1/quote/{symbol}/financials | You need financial statement data. |
| Earnings | /v1/quote/{symbol}/earnings | You need earnings-related data. |
| Related | /v1/quote/{symbol}/related | You need related entities. |
| Sentiment | /v1/quote/{symbol}/sentiment | You 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.