Every UK profit warning classified in real time. Severity, cause, company context — clean JSON, queryable by API. Built for quant funds, financial platforms, and developers.
LSE publishes ~350,000 announcements/year. Most are noise. Flare watches all of them, extracts the signal.
| Date | Company | Ticker | Event type | Severity | Primary reason | Summary | Source |
|---|---|---|---|---|---|---|---|
| Loading live events... | |||||||
Built on Cloudflare Workers, D1, and Queues. Cost to run: ~£30/month. Classification by Claude API at ~£0.004 per announcement.
Authenticate with your API key in the header. All responses are JSON. Rate limits depend on your tier.
// Request GET /v1/warnings ?from=2025-01-01 &index=FTSE250 &severity=material &limit=20 Authorization: Bearer fk_live_xxx // Response { "data": [ { "id": "warn_01j8x2k...", "company": "Fevertree Drinks", "ticker": "FEVR", "index": "FTSE250", "announced_at": "2025-03-12T08:14:00Z", "severity": "material", "reason_primary": "demand_weakness", "reason_detail": "US on-trade volumes deteriorated sharply in H2", "confidence": 0.97, "rns_url": "https://..." } ], "meta": { "total": 284, "page": 1, "limit": 20 } }
// Get all warnings for a company GET /v1/company/FEVR/warnings // Response { "company": { "name": "Fevertree Drinks plc", "ticker": "FEVR", "isin": "GB00B3FLWH99", "index": "FTSE250", "sector": "Beverages" }, "warning_count": 4, "last_warning": "2025-03-12", "warnings": [ { "id": "warn_01j8x2k", ... }, { "id": "warn_01h4m9p", ... } ] }
// Register webhook (Professional+) POST /v1/webhooks { "url": "https://your-app.com/hook", "filters": { "index": ["FTSE100", "FTSE250"], "severity": ["material"], "min_confidence": 0.90 } } // Payload fired on each match: { "event": "warning.classified", "data": { ... }, "classified_at": "2025-03-12T08:17:22Z", "latency_seconds": 187 }
-- Core warnings table CREATE TABLE warnings ( id TEXT PRIMARY KEY, rns_id TEXT UNIQUE, ticker TEXT, company TEXT, isin TEXT, index_name TEXT, announced_at DATETIME, raw_text TEXT, -- Classification (populated by Claude) is_warning BOOLEAN, confidence REAL, severity TEXT, reason_primary TEXT, reason_detail TEXT, classified_at DATETIME, -- Flags needs_review BOOLEAN DEFAULT false );
Free tracker for everyone. API access starts at £79/month. No enterprise sales motion required.