Published
November 11, 2022
Updated
November 29, 2023
The Webflow API gives you access to certain key aspects of a Workspace and the Sites contained within;
- Sites, including form submissions
- CMS, including Collections and Items
- Users ( from Membership )
- Orders ( from Commerce )
See Introduction to the Webflow API.
2022 Keynote Update
Some exciting discussions about the possibility of future API expansion. Specifically mentioned was;
- Sites
- Pages
- Custom Code
- Content
API Access
Your API Token is generated under Site settings, on the Integrations tab.
WARNING: Make sure to save your API key safely in a password manager. You only get to generate one key, and once you've generated it, you are no longer able to see it. This means if ever need to add a new service, you'll need to re-generate the key, which will invalidate access for all of your existing services until you give them the new key.
When you authorize an application through the API token, it will appear under the Authorized Applications section of the same page.
More
In the v1 API, this works to find an item with “slug” field value equal to “my-slug”
/collections/abcdefghijklmnop/items?fields[slug][eq]=my-slug
This same approach reportedly does not work in the v2 API.
https://discourse.webflow.com/t/how-to-filter-collection-items-by-field-value-with-v2-api/262365