Recipe library

Start with the question, not the endpoint.

Concrete ways to turn the API into a decision-support workflow while keeping the original evidence auditable.

01

Find cluster insider buying

Companies where at least three distinct insiders bought within 30 days.

GET /api/v1/insider-trades/{ticker}summary.clusterBuy30Days.detected === trueOpen recipe docs
02

Keep only voluntary purchases

Exclude vesting, options, gifts, tax withholding and 10b5-1 noise.

GET /api/v1/insider-trades/{ticker}?code=Ptransaction.alertEligible && transaction.signal === 'buy'Open recipe docs
03

Find lowered guidance

Management outlook that fell versus the comparable prior filing.

GET /api/v1/guidance/{ticker}?change=loweredguidance[].change.direction === 'lowered'Open recipe docs
04

Compare five years of revenue

Canonical annual revenue facts with their original SEC accession.

GET /api/v1/financials/{ticker}?metric=revenue&period=annualobservations.filter(row => row.metric === 'revenue')Open recipe docs
05

Audit a social sentiment call

See the split, each supporting post and whether AI enrichment degraded.

GET /api/sentiment?ticker={ticker}sentiment + topTweets + analysisOpen recipe docs
06

Explain why a radar name qualified

Inspect pivot distance, pattern checks and the trader's own rationale.

GET /api/influencers?ticker={ticker}patternMetrics + setupReasons + candidateFiltersOpen recipe docs