Skip to content
noxstock
Guides

Choose endpoints

Use the smallest route set that answers the question.

The fastest noxstock workflow is usually discover → check coverage → snapshot → add only the depth you need.

Common jobs

JobCall these routesNotes
Validate a ticker/v2/search, then /v2/coverageUse before storing user input or launching batch work.
One-symbol brief/v2/snapshotBest first call. Compact and broad.
Cheap valuation check/v2/snapshot, /v2/valuationFree-tier accessible.
Full financial review/v2/fundamentals, /v2/valuation, /v2/earningsStarter/Builder. Use quarter first, annual for longer context.
Technical setup/v2/technicals, /v2/price-actionMomentum/trend/range context.
Compare 2–4 names/v2/compareFast scorecard. Use deeper routes only for finalists.
SEC diligence/v2/filings, /v2/filings/{accession}, /v2/filings/{accession}/section/{name}Cold EDGAR calls can be slower; cache repeat calls.
Insider scan/v2/insiderTrailing 90-day Form 4 rollup with recent rows.
Upcoming events/v2/calendarSymbol-level events only. Not a market-wide calendar.

Default workflow for an AI agent

1. Search if the user gave a company name, not a ticker.
2. Coverage-check the resolved ticker.
3. Snapshot first.
4. If the user asks “why”, add fundamentals + valuation.
5. If the user asks about risk, add filings sections + insider.
6. If the user asks timing/trend, add technicals + price-action.
7. Summarize with freshness and caveats.

Endpoint map

RouteBest forFree?
/v2/searchSymbol discoveryYes
/v2/coverageSupported universe checkYes
/v2/snapshotFirst-pass decision contextYes
/v2/valuationMultiples, valuation factsYes
/v2/profileBusiness/profile/ETF contextNo
/v2/fundamentalsIncome, balance, cash flow rowsNo
/v2/earningsEarnings-related factsNo
/v2/dividendsDividend history and yield contextNo
/v2/technicalsRSI, SMA, trend indicatorsNo
/v2/price-actionRange, drawdown, relative performanceNo
/v2/historyTime series for selected seriesNo
/v2/compare2–4 symbol scorecardNo
/v2/calendarPer-symbol upcoming eventsNo
/v2/filingsRecent SEC filing listNo
/v2/filings/{accession}Filing metadata + section indexNo
/v2/filings/{accession}/section/{name}Full filing section textNo
/v2/insiderForm 4 activityNo

Avoid overcalling

  • Do not call every route for every user question.
  • Do not call filings sections unless the answer needs exact SEC language.
  • Do not call history when snapshot/technicals already answer the trend question.
  • Do not retry non-retryable errors.