News Article Body

News Article Body Ruby API Documentation

Returns the body of a news article. This endpoint requires additional authorization beyond basic news access. Please see a representative for details.

API Class:
Intrinio::CompanyApi
Instance Method:
get_company_news_body()

Stock Price Code Example

Use my API Key
# Load the gem
require 'intrinio-sdk'
require 'pp'
# Setup authorization
Intrinio.configure do |config|
config.api_key['api_key'] = 'YOUR_API_KEY'
config.allow_retries = true
end
company_api = Intrinio::CompanyApi.new
news_story_id = "new_aBcDef"
publication_date = DateTime.parse(nil)
opts = {
specific_source: nil,
next_page: nil
}
result = company_api.get_company_news_body(news_story_id, publication_date, opts)
pp result
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Parameters

NameTypeDescriptionNotes
news_story_idStringThe identifier of the news story. 
publication_dateDateTimeThe DateTime of the story. 
specific_sourceStringOnly news from this source. Defaults to highest available if not present.[optional]  
next_pageStringGets the next page of data from a previous API call[optional]  

Return Type

object
Intrinio::ApiResponseCompanyNewsBody

Properties

NameTypeDescription
bodyStringThe article body.