FinanceLab

Introduction

The FinanceLab labeled-news API for global news, labeled and sentiment-scored.

FinanceLab turns the global news firehose into a clean, queryable feed of labeled, sentiment-scored articles.

Every article we ingest from GDELT is run through our models and stored with:

  • Relevance: a gate that keeps only market-relevant news.
  • Domain: what the story is about (e.g. monetary_rates, tech_semis, crypto).
  • Impact: low / medium / high.
  • Region: where it matters.
  • Sentiment: a FinBERT score and label (positive / negative / neutral).

You query it as a simple JSON API: filter by date, domain, impact, region, or sentiment and get back the underlying articles: URL, headline, source, and our labels.

curl -H "X-API-Key: flk_..." \
  "https://api.financelab.ai/api/v1/news?domain=crypto&impact_min=high&limit=20"

Head to the Quickstart to make your first call.