Skip to main content
GET
/
api
/
articles
/
by-sector
/
{sector}
curl "https://worker.rushed.com.br/api/articles/by-sector/TEC?include=translations&limit=10" \
  -H "X-API-Key: rsh_live_xxxxxxxxxxxx"
{
  "success": true,
  "data": [
    {
      "id": "770a0600-a4ad-63f6-c938-668877662222",
      "sourceName": "TechCrunch",
      "title": "Brazilian fintech Nubank launches AI-powered credit scoring",
      "publishedAt": "2026-03-28T12:15:00Z",
      "primarySector": "TEC",
      "primaryTopic": "INO",
      "contentType": "NEWS",
      "urgencyLevel": "MEDIUM",
      "isBreaking": false,
      "language": "en",
      "titlePt": "Fintech brasileira Nubank lanca scoring de credito com IA",
      "summaryPt": "O Nubank anunciou um novo modelo de scoring de credito baseado em inteligencia artificial..."
    }
  ],
  "pagination": {
    "limit": 10,
    "offset": 0,
    "total": 89,
    "hasMore": true
  }
}

Description

Returns a paginated list of articles for a specific sector. Useful for building sector-specific feeds (e.g., a Finance dashboard, Technology news widget).

Headers

X-API-Key
string
required
Your Rushed API key

Path Parameters

sector
string
required
Sector code: FIN, TEC, SAU, ENE, MAT, IND, CON, IMO, AGR, TRA, COM, SER, GOV, ESP, CRY, FIP, CIE, DEF, CUL, EDU, AMB, SOC, TUR

Query Parameters

include
string
Comma-separated enrichment modules
limit
integer
default:"20"
Results per page (1–100)
offset
integer
default:"0"
Number of results to skip

Response

success
boolean
required
data
array
required
Array of articles in the requested sector
pagination
object
required
Pagination metadata (limit, offset, total, hasMore)
curl "https://worker.rushed.com.br/api/articles/by-sector/TEC?include=translations&limit=10" \
  -H "X-API-Key: rsh_live_xxxxxxxxxxxx"
{
  "success": true,
  "data": [
    {
      "id": "770a0600-a4ad-63f6-c938-668877662222",
      "sourceName": "TechCrunch",
      "title": "Brazilian fintech Nubank launches AI-powered credit scoring",
      "publishedAt": "2026-03-28T12:15:00Z",
      "primarySector": "TEC",
      "primaryTopic": "INO",
      "contentType": "NEWS",
      "urgencyLevel": "MEDIUM",
      "isBreaking": false,
      "language": "en",
      "titlePt": "Fintech brasileira Nubank lanca scoring de credito com IA",
      "summaryPt": "O Nubank anunciou um novo modelo de scoring de credito baseado em inteligencia artificial..."
    }
  ],
  "pagination": {
    "limit": 10,
    "offset": 0,
    "total": 89,
    "hasMore": true
  }
}