Skip to main content

Markets

Use market routes for broad market views.

Market Summary

curl "https://api.gfin.dev/v1/markets/summary" \
-H "X-Gfin-Contact: you@example.com"
summary = client.market_summary()
const summary = await client.marketSummary();

Interesting Stocks

curl "https://api.gfin.dev/v1/markets/interesting" \
-H "X-Gfin-Contact: you@example.com"
interesting = client.market_interesting()
const interesting = await client.marketInteresting();

Home Hero Groups

curl "https://api.gfin.dev/v1/home/hero-groups" \
-H "X-Gfin-Contact: you@example.com"
hero_groups = client.hero_groups()
const heroGroups = await client.heroGroups();

Usage Notes

Market routes are useful for dashboards, market overview pages, and agents that need a compact current market context before drilling into symbols.