New: unified Python, Go & Rust SDKs — available now in beta.

Introduction

What the Forecite API does, who it's for, and its conventions.

The Forecite API is a low-latency interface to market-moving news and filings, each scored by the Verdict Engine for actionability and sentiment.

What you can do

  • Stream or query the scored feed — pull the latest scored items, filtered by ticker, source, sentiment, and time.
  • Fetch full detail for any item, including per-symbol analysis.
  • Score your own artifacts — run the Verdict Engine on text you supply.
  • Inspect your key — check tier, usage, and remaining quota.

Who it's for

  • Quant desks wiring signals into execution and research pipelines.
  • Discretionary traders building alerts and dashboards.
  • AI agents that need a clean, scored, real-time news layer.

Two ways in

SurfaceUse it for
WebSocketReal-time push of new scored items as they break.
RESTOn-demand queries, history, and scoring.

This reference covers the REST surface.

Base URL

All endpoints live under:

https://api.forecite.com

Conventions

  • Auth — every request carries Authorization: Bearer fc_live_.... See Authentication.
  • Format — requests and responses are JSON (Content-Type: application/json).
  • Timestamps — ISO 8601 / RFC 3339, UTC (e.g. 2026-06-30T13:31:02Z).
  • Pagination — list endpoints return an opaque next_cursor; pass it back as cursor to page.
  • Errors — standard HTTP status codes (401, 403, 429, …).

Ready to make a call? Start with Authentication.

On this page