GET api/market/news/{newsid}

Gets the news article

Request Information

URI Parameters

NameDescriptionTypeAdditional information
newsid

News ID

integer

Required

Body Parameters

None.

Response Information

Resource Description

Returns news article contents

News
NameDescriptionTypeAdditional information
ID

News ID

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "PublishDateTime": "2026-02-04T10:00:00",
  "Headline": "Norton up to 90.9% in target Bullabulling",
  "SecurityCode": "NGF",
  "IndustryCode": 15104000,
  "Contents": "News contents. Only populated when calling the news contents endpoint and not the news search endpoint."
}

application/xml, text/xml

Sample:
<News xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TPP.B2B.Webservices2.Contract.Market">
  <Contents>News contents. Only populated when calling the news contents endpoint and not the news search endpoint.</Contents>
  <Headline>Norton up to 90.9% in target Bullabulling</Headline>
  <ID>1</ID>
  <IndustryCode>15104000</IndustryCode>
  <PublishDateTime>2026-02-04T10:00:00</PublishDateTime>
  <SecurityCode>NGF</SecurityCode>
</News>