Athena News API Documentation
FeaturesPricingContact UsCreate AccountSign In
Athena API v2
Athena API v2
  • About Athena News API
  • v2 Change Summary
  • Account Overview
    • Account Overview
    • Dashboard
    • News Search
    • API Key
    • Account Settings
    • Manage Subscription
  • Getting Started
    • API Quickstart
    • Intro to Building a Query
    • API Reference
      • News Search
      • Headlines (BETA)
    • Data Model Reference
      • Articles
      • Entities
    • Supported Languages
    • Rate Limits
    • Troubleshooting
Powered by GitBook
On this page
  1. Getting Started
  2. Data Model Reference

Articles

Article Details

Response

Name
Type
Description

datePublished

datetime

Publish date of article

title

string

Article title

description

string

Article description

embeddings

array

Array of containing embeddings for title and description.

entities

array

Array of entities identified in the article

entity_relationships

array

Array of relationships identified between entities in the article.

image

array

String for article thumbnail

topics

array

Array of three primary topics

site

string

Site

score

float

Relevancy score

sentiment

dict

Dict containing sentiment score for title and description. Scale -1 to +1.

bodyText

string

String containing body text of article

Example Article

{
    "_id": "6734053d6e3c81cee1dcdf90",
    "datePublished": "Wed, 13 Nov 2024 01:44:17 GMT",
    "description": "President-elect Donald Trump has officially named Elon Musk to head the newly created 'Department of Government Efficiency.'",
    "entities": null,
    "entity_relationships": null,
    "image": [],
    "bodyText":null,
    "score": 17.239036560058594,
    "site": "dailymail.co.uk",
    "title": "Trump names Elon Musk and Vivek Ramaswamy to head Department of Government Efficiency - 'Manhattan Project of our time'",
    "topics": null,
    "sentiment":{
        "title":0.5,
        "description":0.25
    }
}
  
PreviousData Model ReferenceNextEntities

Last updated 4 months ago