> For the complete documentation index, see [llms.txt](https://notara.gitbook.io/notara-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://notara.gitbook.io/notara-docs/connectors/webflow.md).

# Webflow

The Webflow connector gives the agent read access to your Webflow sites and CMS — listing collections, reading blog posts, team member entries, or any other CMS content from Slack.

## What It Enables

| Tool                    | Capability | Description                                                     |
| ----------------------- | ---------- | --------------------------------------------------------------- |
| `list_sites`            | `read`     | List all Webflow sites the token can access                     |
| `get_site`              | `read`     | Get site details including domains and last published timestamp |
| `list_collections`      | `read`     | List CMS collections on a site (blog, team, products, etc.)     |
| `get_collection`        | `read`     | Get a collection's field schema to understand its structure     |
| `list_collection_items` | `read`     | List items in a CMS collection with sorting and filtering       |
| `get_collection_item`   | `read`     | Fetch one CMS item in full by ID                                |

## Setup

**Required:** Webflow Data API v2 token with `cms:read` and `sites:read` scopes.

**Where to find it:** In Webflow, go to **Workspace Settings → Integrations → API Access** and generate a site token, or create an app token with the required scopes.

1. In the Notara dashboard, go to **Tools**.
2. Click the **Webflow** tile.
3. Go to your Webflow workspace settings and create an API token with `cms:read` and `sites:read`.
4. Paste it into the credential field and click **Verify & Save**.

Your token is encrypted at rest with AES-256-GCM.

## Example Prompts

> "When was our marketing site last published?"

> "List all blog posts from the last 30 days."

> "What fields are on the Team Members collection?"


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://notara.gitbook.io/notara-docs/connectors/webflow.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
