> ## Documentation Index
> Fetch the complete documentation index at: https://docs.forestreet.com/llms.txt
> Use this file to discover all available pages before exploring further.

# News

> Retrieve a list of news articles and events specifically tailored for a given market, providing up-to-date insights and happenings related to that market.

### Path

<ParamField path="marketId" type="string" initialValue="2">
  The ID of the market whose companies you want to retrieve. This can be retrieved by searching for markets.
</ParamField>

### Body Request Object Example

```JSON theme={null}
{
    "page": 1,
    "itemsPerPage": 10,
    "filters": {
        "companies": ["otter.ai", "scribie.com"],
        "search": "ai",
        "source": ["businesswire.com", "prnewswire.com"]
    }
}
```

### Body

<ParamField body="page" type="number" default="">
  The page to return from the paginated results
</ParamField>

<ParamField body="itemsPerPage" type="number" default="">
  The number of markets to return per page
</ParamField>

<ParamField body="companies" type="array" default="" initialValue="">
  The name of the company you'd like to return
</ParamField>

### Response

<ResponseExample>
  ```json Response theme={null}
  {
    "meta": {
        "totalItems": 6,
        "currentPage": 1,
        "totalPages": 1,
        "itemsPerPage": 10
    },
    "data": [
        {
            "domain": "scribie.com",
            "URL": "https://www.marktechpost.com/2023/07/23/top-speech-to-text-ai-tools-2023/",
            "title": "Top Speech to Text AI Tools (2023)",
            "snippet": "Scribie.com. Finally, scribie rounds up our list of top artificial  intelligence transcribing software and services with its four-step...",
            "datePublished": "2023-07-25T23:00:00.000Z",
            "dateRetrieved": "2023-08-02T13:06:59.000Z",
            "source": "MarkTechPost"
        },
        {
            "domain": "otter.ai",
            "URL": "https://appadvice.com/app/otter-transcribe-voice-notes/1276437113",
            "title": "Otter: Transcribe Voice Notes",
            "snippet": "Otter: Transcribe Voice Notes. by Otter.ai, Inc. Otter: Transcribe Voice  Notes. Siri commands. iPhone iPad Siri. FREE in the App Store...",
            "datePublished": "2023-02-20T23:21:11.000Z",
            "dateRetrieved": "2023-03-20T23:21:11.000Z",
            "source": "AppAdvice"
        },
        {
            "domain": "otter.ai",
            "URL": "https://www.forbes.com/sites/tjmccue/2023/01/29/otterai-is-a-gem-for-transcribing-your-recorded-thoughts-into-writing/",
            "title": "Otter.ai Is A Gem For Transcribing Your Recorded Thoughts Into Writing",
            "snippet": "Otter.ai is a voice to text conversion tool that can help you avoid making  notes into digital documents and be more productive.",
            "datePublished": "2023-01-29T00:00:00.000Z",
            "dateRetrieved": "2023-08-02T13:05:58.000Z",
            "source": "Forbes"
        },
        {
            "domain": "otter.ai",
            "URL": "https://www.moneylife.in/article/otterai-audio-to-text/69517.html",
            "title": "Otter.ai: Audio to Text",
            "snippet": "If you attend a lot of meetings, physical or online and you hate to take  notes, Otter.ai is a must for you. Try it out today!",
            "datePublished": "2023-01-14T00:00:00.000Z",
            "dateRetrieved": "2023-05-18T08:43:43.000Z",
            "source": "Moneylife"
        },
        {
            "domain": "otter.ai",
            "URL": "https://www.computerworld.com/article/3658853/otterai-argues-remote-meetings-can-be-more-productive-than-in-person.html",
            "title": "Otter.ai argues remote meetings can be more productive than in-person",
            "snippet": "Otter.ai has been updated for iOS, introducing new tools that help it  become a collaboration productivity hub. I talked to company CEO Sam  Liang...",
            "datePublished": "2022-04-28T23:00:00.000Z",
            "dateRetrieved": "2023-08-02T13:05:58.000Z",
            "source": "Computerworld"
        },
        {
            "domain": "otter.ai",
            "URL": "https://www.forbes.com/sites/stevenaquino/2021/12/16/how-transcription-app-otterai-has-proven-indispensable-to-one-deaf-woman-in-this-mask-dominant-era/",
            "title": "How Transcription App Otter.ai Has Proven Indispensable To ...",
            "snippet": "How Transcription App Otter.ai Has Proven Indispensable To One Deaf Woman  In This Mask-Dominant Era. Steven Aquino. Contributor...",
            "datePublished": "2021-12-16T00:00:00.000Z",
            "dateRetrieved": "2023-08-02T13:05:58.000Z",
            "source": "Forbes"
        }
    ]
  }
  ```
</ResponseExample>
