Description
Returns a paginated list of articles. Every article includes base fields by default. Use the include parameter to request additional enrichment modules like sentiment, entities, or market impact.
Your Rushed API key Format: rsh_live_xxxxxxxxxxxx
Query Parameters
Comma-separated enrichment modules. Options: sentiment, market_impact, entities, translations, scoring, classification, meta Example: sentiment,entities
Filter by primary sector code Options: FIN, TEC, SAU, ENE, MAT, IND, CON, IMO, AGR, TRA, COM, SER, GOV, ESP, CRY, FIP, CIE, DEF, CUL, EDU, AMB, SOC, TUR
Filter by primary topic code Options: M&A, IPO, RES, DIV, REG, POL, MAC, ESG, INO, CRI, EXE, TRB, INT, JUR, EXP, PAR, DEB, TRF, CPT, INF, CLI, SEG, SAP, ELE, TRI, CIB, EDI
Filter by urgency: CRITICAL, HIGH, MEDIUM, LOW
Filter by content type: BREAKING, REPORT, ANALYSIS, INTERVIEW, NEWS, PRESS, RUMOR
Filter for breaking news only
Filter by language: pt, en, es
Filter by source domain (comma-separated). Example: reuters.com,bloomberg.com
ISO 8601 datetime. Only articles published after this date.
ISO 8601 datetime. Only articles published before this date.
Full-text search across title, subtitle, and summary
sort
string
default: "publishedAt"
Sort order: publishedAt, baseScore, urgencyLevel
Number of results to skip
Response
Array of article objects Source name (e.g., Reuters)
ISO 8601 publication date
Content type (BREAKING, NEWS, etc.)
CRITICAL, HIGH, MEDIUM, LOW
Whether this is breaking news
Article language (pt, en, es)
curl "https://worker.rushed.com.br/api/articles?primarySector=FIN&urgencyLevel=HIGH&include=sentiment&limit=5" \
-H "X-API-Key: rsh_live_xxxxxxxxxxxx"
200 — Success
401 — Unauthorized
429 — Rate Limited
{
"success" : true ,
"data" : [
{
"id" : "550e8400-e29b-41d4-a716-446655440000" ,
"sourceUrl" : "https://reuters.com/business/petrobras-dividend" ,
"sourceName" : "Reuters" ,
"title" : "Petrobras announces record dividend payout of R$72B" ,
"subtitle" : "State oil company surprises market with largest-ever distribution" ,
"summary" : "Petrobras declared its largest-ever dividend distribution of R$72 billion, exceeding analyst expectations by 40%." ,
"publishedAt" : "2026-03-28T14:30:00Z" ,
"primarySector" : "FIN" ,
"primaryTopic" : "DIV" ,
"contentType" : "BREAKING" ,
"urgencyLevel" : "HIGH" ,
"isBreaking" : true ,
"imageUrl" : "https://reuters.com/images/petrobras.jpg" ,
"language" : "en" ,
"sentimentScore" : 0.82 ,
"sentimentLabel" : "MUITO_POSITIVO" ,
"sentimentConfidence" : 0.91
}
],
"pagination" : {
"limit" : 5 ,
"offset" : 0 ,
"total" : 347 ,
"hasMore" : true
}
}