Authenticate
Create a scoped API key from the dashboard, keep it server-side, and send it with each request as a bearer token.
The API exposes the same research primitives used inside the product: factor catalogs, ranked scores, optimizer inputs, cached analytics, scenario research, and reviewed execution staging.
curl https://api.strategynet.xyz/v1/factors/momentum/scores \ -H "Authorization: Bearer $STRATEGYNET_API_KEY" \ -G \ --data-urlencode "universe=us_equities" \ --data-urlencode "as_of=latest"
Use the API when a desk needs StrategyNet output inside internal dashboards, scheduled jobs, model review notebooks, or execution-control systems.
Create a scoped API key from the dashboard, keep it server-side, and send it with each request as a bearer token.
Pull daily or intraday factor ranks, symbol projections, validation metrics, and portfolio-ready signal bundles.
Use factor outputs in optimizers, scheduled reports, alerts, or execution review workflows without rebuilding the research stack.
Schedule updates around market sessions, model refreshes, or desk review cycles with consistent response envelopes.
Public API resources are organized around stable workflow nouns rather than product screens, so integrations can evolve without mirroring the UI.
/v1/factorsList available factor families, descriptions, coverage, and release cadence.
/v1/factors/{factor_id}/scoresFetch ranked factor values by date, universe, symbol set, and horizon.
/v1/strategies/optimizeSubmit selected factors and constraints to receive a candidate market-neutral basket.
/v1/research/market-impactRun supported scenario and market-impact analytics from the same API surface used by product workflows.
/v1/cache/lookupRetrieve previously computed analytics when a workflow needs deterministic replay or low-latency reads.
/v1/execution/stageStage reviewed candidate baskets for connected execution providers where supported.
StrategyNet API access is designed for server-side workflows that need repeatable factor evidence, optimizer output, and reviewed handoff into execution tooling.
API output is for research and analytical workflows. It is not investment advice, a recommendation, or an instruction to trade any security.