> ## 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 mod queue

> List posts and comments awaiting moderator review.

<Warning>
  Reddit connections are temporarily unavailable while Automate.ax awaits
  Reddit's approval for commercial Data API access. You can connect a Reddit
  account after the integration is approved and enabled.
</Warning>

`reddit.listModQueue` list posts and comments awaiting moderator review.

```ts automations/reddit-list-mod-queue.automation.ts theme={null}
import { automation } from "automate.ax"
import { reddit } from "automate.ax/reddit"

export default automation("List mod queue", () => {
  const result = reddit.listModQueue({ subreddit: "AutomateAx", limit: 25 })
})
```

## Inputs

Set a subreddit the connected account moderates. Optional `only` restricts results to `links` or `comments`; `limit` defaults to 25 and is capped at 100. Pass `after` to continue. Compatible signals are accepted. Use the optional second argument `{ account }` to select a named Reddit binding.

## Output

Returns mixed `content` plus `pageInfo`. The account needs Reddit's `read` scope and suitable moderator permissions for the subreddit.
