Skip to main content
GET
/
api
/
entities
/
{id}
/
articles
curl "https://worker.rushed.com.br/api/entities/a1b2c3d4-e5f6-7890-abcd-ef1234567890/articles?include=sentiment&limit=5" \
  -H "X-API-Key: rsh_live_xxxxxxxxxxxx"
{
  "success": true,
  "data": [
    {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "sourceName": "Reuters",
      "title": "Petrobras announces record dividend payout of R$72B",
      "publishedAt": "2026-03-28T14:30:00Z",
      "primarySector": "FIN",
      "primaryTopic": "DIV",
      "isBreaking": true,
      "sentimentScore": 0.82,
      "sentimentLabel": "MUITO_POSITIVO"
    }
  ],
  "pagination": { "limit": 5, "offset": 0, "total": 47, "hasMore": true }
}

Description

Returns articles that mention a specific entity. Each article includes the standard base fields plus optional enrichments via include. Useful for tracking news about a specific company, person, or ticker.

Headers

X-API-Key
string
required
Your Rushed API key

Path Parameters

id
string
required
Entity UUID

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
curl "https://worker.rushed.com.br/api/entities/a1b2c3d4-e5f6-7890-abcd-ef1234567890/articles?include=sentiment&limit=5" \
  -H "X-API-Key: rsh_live_xxxxxxxxxxxx"
{
  "success": true,
  "data": [
    {
      "id": "550e8400-e29b-41d4-a716-446655440000",
      "sourceName": "Reuters",
      "title": "Petrobras announces record dividend payout of R$72B",
      "publishedAt": "2026-03-28T14:30:00Z",
      "primarySector": "FIN",
      "primaryTopic": "DIV",
      "isBreaking": true,
      "sentimentScore": 0.82,
      "sentimentLabel": "MUITO_POSITIVO"
    }
  ],
  "pagination": { "limit": 5, "offset": 0, "total": 47, "hasMore": true }
}