> ## 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 custom emoji

> List custom Slack emoji names and their image URLs or aliases.

`slack.listCustomEmoji` lists the workspace's custom emoji map.

## Example

```ts automations/list-custom-emoji.automation.ts theme={null}
import { automation, onDashboardRun } from "automate.ax"
import { slack } from "automate.ax/slack"

export default automation("List custom emoji", () => {
  onDashboardRun({ title: "List custom emoji" })

  slack.listCustomEmoji()
})
```

## Output

Returns a record keyed by emoji name. Values are image URLs or `alias:name` references. Requires `emoji:read`.
