> For the complete documentation index, see [llms.txt](https://athena-10.gitbook.io/athena-api/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://athena-10.gitbook.io/athena-api/getting-started/data-model-reference/articles.md).

# 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**

```json
{
    "_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
    }
}
  
```
