canonical: https://jentic.com/apis/webflow.com/webflow-data-api

# Webflow Data API

webflow.com/webflow version 1.0.0. The API exposes 35 endpoints secured with bearer authentication.

## For AI agents

Programmatically authorized user, authorized info. Covers 35 operations with bearer authentication.

## Scope

Does not handle payments, communications, or crm - use for developer tools only.

## Capabilities

- Authorized User
- List Sites
- Get Site
- Publish Site
- Create Webhook

## Use cases

### Developer Tools Operations

Use the Webflow Data API to perform developer tools operations programmatically. The API provides 35 endpoints covering core functionality including authorized user, authorized info, list sites.

Example prompt: Call GET /user to authorized user

### Automated Collections Management

Automate collections operations by combining multiple Webflow Data API endpoints. Agents can authorized info and then list sites in a single workflow.

Example prompt: Call GET /info to authorized info, then verify the result

### AI Agent Integration via Jentic

AI agents discover and call Webflow Data API endpoints through Jentic without managing credentials directly. An agent searches for the required operation by intent, receives the matching endpoint schema, and executes the call with Jentic-managed authentication. This eliminates the need to read API documentation or handle bearer tokens manually.

Example prompt: Search Jentic for 'authorized user', load the operation schema, and execute with Jentic-managed credentials

## Key endpoints

| Method | Path | Description |
| --- | --- | --- |
| GET | /user | Authorized User |
| GET | /info | Authorized Info |
| GET | /sites | List Sites |
| GET | /sites/{site_id} | Get Site |
| POST | /sites/{site_id}/publish | Publish Site |
| GET | /sites/{site_id}/domains | List Domains |
| POST | /sites/{site_id}/webhooks | Create Webhook |
| GET | /sites/{site_id}/webhooks | List Webhooks |

## Key resources

- **Collections** — Operations for collections
- **Info** — Operations for info
- **Sites** — Operations for sites
- **User** — Operations for user

## Why Jentic

- **Setup:** Wiring the Webflow Data API by hand means learning its bearer token, pointing at api.webflow.com, and handling responses yourself. Through Jentic you install once, import the Webflow Data API from the API Directory, store the token once, and your agent calls it.
- **Permission scoping:** The Webflow Data API puts the site id in the URL path (/sites/{site_id}), so a rule can pin your agent to one site and nothing else. You choose the operations it may call, so state-changing ones like publishing a site or adding a webhook are not included unless you add them.
- **Credential handling:** Your Webflow token is stored once, encrypted, by your own Jentic One instance and injected at execution time. It never enters the agent's prompt, logs, or context.
- **Discovery method:** Agents search Jentic by intent such as 'list sites' or 'publish a site', and Jentic returns the matching Webflow Data API operation with its input schema so the agent calls the right endpoint without browsing the reference docs.

## Related APIs

- **Github** — Alternative developer tools API
- **Gitlab** — Alternative developer tools API

## FAQ

### What authentication does the Webflow Data API use?

The Webflow Data API uses a Bearer token in the Authorization header. Through Jentic, these credentials are stored encrypted in your Jentic One instance and injected at execution time, so raw secrets never enter the agent context.

### Can I authorized user with the Webflow Data API?

Yes. Use the GET /user endpoint. The API returns structured JSON responses that agents can parse and act on directly.

### What are the rate limits for the Webflow Data API?

Rate limits are not specified in the OpenAPI spec. Check the vendor documentation for current limits. Through Jentic, rate limiting is handled automatically with retry logic built into the execution layer.

### How do I authorized user through Jentic?

Install the Jentic SDK with pip install jentic, authenticate through Jentic One, the self-hosted execution layer, then search for 'authorized user'. Jentic returns the matching Webflow Data API operation with its input schema. Load the schema and execute the call - credentials are injected automatically.

### How many endpoints does the Webflow Data API have?

The Webflow Data API exposes 35 endpoints covering collections, info, sites operations.

### Can I limit what my agent is allowed to do with the Webflow Data API?

Yes. Because you run Jentic One yourself, your own rules decide which Webflow Data API operations and credentials the agent may use. The Webflow Data API carries the site id in the URL path (/sites/{site_id}), so a rule can pin your agent to a single site and nothing else. You also choose exactly which operations it may call, so state-changing ones like publishing a site (POST /sites/{site_id}/publish) or creating a webhook (POST /sites/{site_id}/webhooks) stay out of reach unless you add them.
