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

> ## Agent Instructions
> Automate.ax automations are TypeScript programs.
> Use Bun for installation and command examples.
> Use Automate.ax for the product name and automate.ax for the package, CLI, and domain.
> Treat documented public APIs as current; do not invent transitional or deprecated names.

# Search news articles

> Search company news in Apollo.

`apollo.searchNewsArticles` searches news associated with Apollo organization IDs.

```ts automations/search-apollo-news.automation.ts theme={null}
import { automation, onDashboardRun } from "automate.ax"
import { apollo } from "automate.ax/apollo"

export default automation("Find company news", () => {
  onDashboardRun({ title: "Find company news" })
  apollo.searchNewsArticles({
    organizationIds: ["5e66b6381e05b4008c8331b8"],
    categories: ["hires"],
    publishedFrom: "2026-01-01",
  })
})
```

`organizationIds` is required. Optional category and date filters narrow the result; `page` defaults to `1` and `perPage` to `25`. Returns `{ articles, pagination }`. Apollo charges one credit for each requested page.
