Skip to main content
GET
/
api
/
articles
/
breaking
curl "https://worker.rushed.com.br/api/articles/breaking?include=sentiment,market_impact&limit=5" \
  -H "X-API-Key: rsh_live_xxxxxxxxxxxx"
{
  "success": true,
  "data": [
    {
      "id": "660f9500-f39c-52e5-b827-557766551111",
      "sourceName": "Bloomberg",
      "title": "Banco Central raises Selic rate to 14.75%",
      "summary": "BCB surprises market with 75bps hike, citing persistent inflation.",
      "publishedAt": "2026-03-28T18:02:00Z",
      "primarySector": "FIN",
      "primaryTopic": "MAC",
      "contentType": "BREAKING",
      "urgencyLevel": "CRITICAL",
      "isBreaking": true,
      "language": "en",
      "sentimentScore": -0.45,
      "sentimentLabel": "NEGATIVO",
      "sentimentConfidence": 0.87,
      "marketImpactLevel": "ALTO",
      "marketImpactHorizon": "IMEDIATO",
      "marketImpactScope": "ECONOMIA",
      "marketConfidenceLevel": "CONFIRMADO"
    }
  ],
  "count": 1
}

Description

Returns the most recent breaking news articles. By default, returns articles from the last 4 hours. Use since to control the time window.

Headers

X-API-Key
string
required
Your Rushed API key

Query Parameters

include
string
Comma-separated enrichment modules: sentiment, market_impact, entities, translations, scoring, classification, meta
since
string
ISO 8601 datetime. Return breaking news published after this date. Defaults to last 4 hours.
limit
integer
default:"10"
Number of results (1–100)

Response

success
boolean
required
Always true on success
data
array
required
Array of breaking news articles, sorted by most recent first
count
integer
required
Number of breaking articles returned
curl "https://worker.rushed.com.br/api/articles/breaking?include=sentiment,market_impact&limit=5" \
  -H "X-API-Key: rsh_live_xxxxxxxxxxxx"
{
  "success": true,
  "data": [
    {
      "id": "660f9500-f39c-52e5-b827-557766551111",
      "sourceName": "Bloomberg",
      "title": "Banco Central raises Selic rate to 14.75%",
      "summary": "BCB surprises market with 75bps hike, citing persistent inflation.",
      "publishedAt": "2026-03-28T18:02:00Z",
      "primarySector": "FIN",
      "primaryTopic": "MAC",
      "contentType": "BREAKING",
      "urgencyLevel": "CRITICAL",
      "isBreaking": true,
      "language": "en",
      "sentimentScore": -0.45,
      "sentimentLabel": "NEGATIVO",
      "sentimentConfidence": 0.87,
      "marketImpactLevel": "ALTO",
      "marketImpactHorizon": "IMEDIATO",
      "marketImpactScope": "ECONOMIA",
      "marketConfidenceLevel": "CONFIRMADO"
    }
  ],
  "count": 1
}