Appearance
Webflow
undefined
| Detail | Value |
|---|---|
| Category | CMS |
| Base URL | https://api.webflow.com/v2 |
| Authentication | OAuth2 |
| Endpoints | 7 |
| Connector key | webflow |
Using Webflow in a workflow
- Go to Connections and click New Connection.
- Pick Webflow from the marketplace.
- Enter your credentials (see Authentication above for what's expected).
- In a workflow, drop an API Call node and select this connection.
- Pick the operation you need from the Operation dropdown — the full list is below.
Available endpoints
| Endpoint | Summary |
|---|---|
GET | List Sites |
GET | List Collections |
GET | List Items |
GET | Create Item |
GET | Update Item |
GET | Publish Site |
GET | List Pages |
Each endpoint is documented in full below. Use the outline on the right to jump to one.
GET
List Sites
| Detail | Value |
|---|---|
| Operation ID | list_sites_0 |
| Method | GET |
| Path | `` |
Parameters
No parameters.
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Webflow connection from the Connection dropdown.
- In the Operation dropdown, select
list_sites_0. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Webflow API reference.
GET
List Collections
| Detail | Value |
|---|---|
| Operation ID | list_collections_1 |
| Method | GET |
| Path | `` |
Parameters
No parameters.
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Webflow connection from the Connection dropdown.
- In the Operation dropdown, select
list_collections_1. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Webflow API reference.
GET
List Items
| Detail | Value |
|---|---|
| Operation ID | list_items_2 |
| Method | GET |
| Path | `` |
Parameters
No parameters.
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Webflow connection from the Connection dropdown.
- In the Operation dropdown, select
list_items_2. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Webflow API reference.
GET
Create Item
| Detail | Value |
|---|---|
| Operation ID | create_item_3 |
| Method | GET |
| Path | `` |
Parameters
No parameters.
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Webflow connection from the Connection dropdown.
- In the Operation dropdown, select
create_item_3. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Webflow API reference.
GET
Update Item
| Detail | Value |
|---|---|
| Operation ID | update_item_4 |
| Method | GET |
| Path | `` |
Parameters
No parameters.
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Webflow connection from the Connection dropdown.
- In the Operation dropdown, select
update_item_4. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Webflow API reference.
GET
Publish Site
| Detail | Value |
|---|---|
| Operation ID | publish_site_5 |
| Method | GET |
| Path | `` |
Parameters
No parameters.
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Webflow connection from the Connection dropdown.
- In the Operation dropdown, select
publish_site_5. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Webflow API reference.
GET
List Pages
| Detail | Value |
|---|---|
| Operation ID | list_pages_6 |
| Method | GET |
| Path | `` |
Parameters
No parameters.
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Webflow connection from the Connection dropdown.
- In the Operation dropdown, select
list_pages_6. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Webflow API reference.