News Articles

GET /news_articles/{ticker}

Get all of today's news articles (with URLs and Sentiment Scores) for an S&P500 ticker.

Responses

GET /news_articles/{ticker}
curl \
 -X GET https://api.bam.money/news_articles/{ticker}?api_key=api_token_value
Response examples (200)
[
  {
    "date": "2023-04-15",
    "title": "Apple insiders sell shares as future not promising",
    "score": 0.6483849454671144,
    "link": "https://seekingalpha.com/article/4592848-apple-insiders-sell-shares-future-not-promising"
  },
  {
    "date": "2023-04-21",
    "title": "Snapchat takes a leaf out of Apple's playbook with new location-sharing option",
    "score": "0.13965279050171375",
    "link": "https://www.benzinga.com/news/23/04/31911051/snapchat-takes-a-leaf-out-of-apples-playbook-with-new-location-sharing-option"
  }
]
Response examples (200)
[
  {
    "date": "2023-04-15",
    "link": "https://seekingalpha.com/article/4592848-apple-insiders-sell-shares-future-not-promising",
    "score": 0.6483849454671144,
    "title": "Apple insiders sell shares as future not promising"
  },
  {
    "date": "2023-04-21",
    "link": "https://www.benzinga.com/news/23/04/31911051/snapchat-takes-a-leaf-out-of-apples-playbook-with-new-location-sharing-option",
    "score": "0.13965279050171375",
    "title": "Snapchat takes a leaf out of Apple's playbook with new location-sharing option"
  }
]
Response examples (422)
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}
Response examples (422)
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}