# 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
    }
}
  
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://athena-10.gitbook.io/athena-api/getting-started/data-model-reference/articles.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
