Webflow Site API

Webflow Site API

With one click and no code, create a Webflow Site API to manage collections, items, forms and more.


Overview

API Plugin simplifies Webflow site management by enabling API endpoint creation without coding or server setup. You can make unlimited API calls to your Webflow site without worrying about rate limits.

Key benefits include:

  • Bypass Webflow API rate limits
  • Manage collection items programmatically across any collection
  • Submit Webflow forms via API
  • Batch create, update, and delete items
  • Publish changes instantly through the API
  • Protect API key security
  • Eliminate server configuration requirements
  • Monitor API usage logs

This integration provides a clean, RESTful interface to your Webflow site data while keeping your Webflow API credentials secure.

How to Setup

We assume you have signed up on API Plugin and are logged into the dashboard.

You’ll need a Webflow API token to configure this API. You can generate the token in your Webflow account:

  1. Log in to your Webflow account
  2. Navigate to Account Settings → Integrations tab
  3. Find the “API Access” section
  4. Generate a new API token with CMS (Edit and read access) and Sites(Read-only access)

To set up the Webflow Site API:

  1. Go to the marketplace
  2. Select Webflow from the list
  3. First save webflow account with API token
  4. After that follow the form to create webflow cms api

Webflow API Token

Now you’ll have a simple and secure API for your entire Webflow site.

Endpoints

Get All Items

GET /webflow/{token}/items?collectionId={collectionId}

Query parameters:

  • collectionId (required): ID of the collection to fetch items from
  • limit (default: 100): Number of items to return
  • offset (optional): For pagination
  • sort (optional): Field to sort by (prefix with “-” for descending)
  • filter (optional): JSON encoded filter object

Get Single Item

GET /webflow/{token}/items/{itemId}?collectionId={collectionId}

Query parameters:

  • collectionId (required): ID of the collection the item belongs to

Create Item

POST /webflow/{token}/items?collectionId={collectionId}

Query parameters:

  • collectionId (required): ID of the collection to create the item in
  • live (optional, default: false): Whether to publish the item immediately

Request body: Object containing item fields

Update Item

PATCH /webflow/{token}/items/{itemId}?collectionId={collectionId}

Query parameters:

  • collectionId (required): ID of the collection the item belongs to
  • live (optional, default: false): Whether to publish the update immediately

Request body: Object containing updated fields

Delete Item

DELETE /webflow/{token}/items/{itemId}?collectionId={collectionId}

Query parameters:

  • collectionId (required): ID of the collection the item belongs to
  • live (optional, default: false): Whether to publish the deletion immediately

Get Collections

GET /webflow/{token}/collections

Returns all collections for your site.

Security Considerations

Your Webflow API token is securely encrypted on our servers and is never exposed to clients. All requests to your Webflow site go through our API, adding an extra layer of security.

You can also set allowed domains to restrict API access to specific origins, enhancing security for your Webflow data.