webflow.listCustomFonts lists custom fonts registered for a site.
Example
automations/webflow-list-custom-fonts.automation.ts
Inputs
Every input accepts a compatible signal. This action requires thesites:read OAuth scope.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Lists custom fonts registered for one Webflow site.
webflow.listCustomFonts lists custom fonts registered for a site.
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 })
})
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. |
| Field | Type | Description |
|---|---|---|
customFonts | WebflowCustomFont[] | Font records, including metadata, axes, and hosted URLs. |
pagination | { limit: number; offset: number; total: number } | Resolved pagination values. |