Skip to main content
GET
/
api
/
news
/
{id}
Get single news article by ID
curl --request GET \
  --url https://api.example.com/api/news/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": 123,
    "url": "<string>",
    "title": "<string>",
    "summary": "<string>",
    "image_url": "<string>",
    "source": "<string>",
    "article_type": "<string>",
    "publish_date": "<string>",
    "language": "<string>",
    "amount_usd": "<string>",
    "round_type": "<string>",
    "deal_date": "<string>",
    "sector": "<string>",
    "hq_country": "<string>",
    "relevance_score": 123,
    "hub_score": 123,
    "enriched_summary": "<string>",
    "entities": [
      {
        "id": 123,
        "name": "<string>",
        "mention_role": "<string>",
        "is_primary": true,
        "sector": "<string>",
        "hq_country": "<string>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Auth0 JWT access token

Path Parameters

id
string
required
Minimum string length: 1
Example:

"12345"

Response

Single news article

data
object
required