> ## 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.

# List organization job postings

> List one explicit page of job postings for an Apollo organization.

`listOrganizationJobPostings` returns a page of current postings. Each page
costs one credit; name/domain resolution costs an additional search credit.

```ts automations/list-apollo-jobs.automation.ts theme={null}
import { automation, onHttpRequest } from "automate.ax"
import { listOrganizationJobPostings } from "automate.ax/apollo"

export default automation("List company jobs", () => {
  onHttpRequest({ scope: "automation" })
  listOrganizationJobPostings({
    organization: { id: "organization-id" },
    perPage: 100,
  })
})
```

`organization` accepts a plain organization ID, `{ id }`, `{ domain }`, or
`{ name }`. `page`
defaults to `1`; `perPage` defaults to `100` and permits up to 10,000. Optional
`account` selects the binding. Returns `{ jobPostings, hasMore, page, perPage }`.
Each posting includes `id`, `title`, `url`, and optional location and posting
timestamps. Apollo supplies no total count, so `hasMore` is inferred from a full
page.
