For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Resources
Get started
    • Overview
  • APIs and SDKs
    • Data API
    • Designer API
    • Browser API
  • Developer tools
    • MCP Server
    • Webflow Apps
    • Webflow CLI
    • DevLink
    • Webflow Cloud
    • Flowkit CSS Framework
    • Changelog
LogoLogo
Resources
Get started

Changelog

This is an overview of the changes to the Webflow APIs and related tools. To filter the list, select one or more tags.

February 4, 2026
February 4, 2026
Was this page helpful?
Previous

User Accounts APIs removed

Next
Built with

New functions for accessing styles and manipulating Div Block element tags

Retrieve styles by paths

The function webflow.getStyleByName() can now accept a nested style path array to get a style, instead of only a single style name. If you have different styles with the same name within a site, you can pass an array with the name of the parent style and the name of the child style to identify a specific style, as in this example:

1const retrievedStyle = await webflow.getStyleByName(["fa-cms-filter-container", "fa-hide-cms-filter"]);

This change is backward-compatible because the function still accepts a single style name.

For more information, see Get style by name or path.

Get and set Div Block element tags

The new functions element.getTag() and element.setTag() allow you to get and set the element tag on a Div Block element, which sets its purpose on the page, such as header, footer, or figure.

For more information, see Get Div Block element tag and Set Div Block element tag.