This is an overview of the changes to the Webflow APIs and related tools. To filter the list, select one or more tags.
v1.18.0: Sites commands and sort controls
v1.18.0: Sites commands and sort controls
v1.18.0 adds a new sites command group for managing Webflow sites from the CLI, plus --sort-by and --order flags for assets list and cms collections list.
Sites commands
A new webflow sites command group lets you list, inspect, and publish sites without leaving the terminal.
sites list— List all sites in your workspace. Supports--fieldsto choose which columns to display and--jsonfor machine-readable output.sites get <siteId>— Get details for a specific site, including display name, short name, time zone, and publish timestamps.sites domains --site <siteId>— List the custom domains configured for a site.sites publish --site <siteId>— Publish a site to the Webflow subdomain or to specific custom domains. Supports--page <pageId>to publish a single page and--dry-runto preview what would be published without triggering a build.
Sort flags for assets and CMS
assets list and cms collections list now accept --sort-by and --order flags so you can control how results are returned.
assets listsupports--sort-by displayName | originalFileName | contentType | size | lastUpdatedand--order asc | desc(default:asc).cms collections listsupports--sort-by displayName | slug | lastUpdatedand--order asc | desc(default:asc).- The site picker now defaults to alphabetical order by display name.
- Invalid flag values produce a clear error message listing the valid options.