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

> Lists custom fonts registered for one Webflow site.

`webflow.listCustomFonts` lists custom fonts registered for a site.

## Example

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

export default automation("List custom fonts", () => {
  onDashboardRun({ title: "List custom fonts" })
  webflow.listCustomFonts({ siteId: "site-id", limit: 100 })
})
```

## Inputs

Every input accepts a compatible signal. This action requires the `sites:read` OAuth scope.

| Field    | Type     | Required | Description                            |
| -------- | -------- | -------- | -------------------------------------- |
| `siteId` | `string` | Yes      | Webflow site ID.                       |
| `limit`  | `number` | No       | Page size from 1 through 100.          |
| `offset` | `number` | No       | Nonnegative number of records to skip. |

## Output

| Field         | Type                                               | Description                                              |
| ------------- | -------------------------------------------------- | -------------------------------------------------------- |
| `customFonts` | `WebflowCustomFont[]`                              | Font records, including metadata, axes, and hosted URLs. |
| `pagination`  | `{ limit: number; offset: number; total: number }` | Resolved pagination values.                              |
