Webflow & Glide Integration
Webflow and Glide are popular tools for building visual websites, client portals, and directories.
By connecting your live API Now! database to these platforms, you can automatically display, update, or sync database records (like product listings, portfolios, or member directories) in real time.
Webflow Integration
Section titled “Webflow Integration”Webflow displays dynamic content using the Webflow CMS (Content Management System). There are two primary ways to display your database records in Webflow:
Option A: Real-Time Sync (Recommended for Directories)
Section titled “Option A: Real-Time Sync (Recommended for Directories)”Since Webflow CMS is pre-rendered for fast page loads, you can use a workflow tool (like Make or Zapier) to copy records from your database into Webflow CMS whenever they change.
- Set up a Trigger: Configure Make/Zapier to check your API Now! list endpoint (e.g.
GET /products) on a schedule or listen to webhooks. - Authenticate: Pass your API Key in the request header (
Authorization: Bearer <Your_API_Key>). - Map CMS Fields: Map the JSON response fields from API Now! directly to your Webflow CMS columns (e.g., map the
NameSemantic module to the Webflow Item Title). - Publish: When a new record is added to your database, it automatically publishes to your Webflow website.
Option B: Live Frontend Fetch (For Client Portals)
Section titled “Option B: Live Frontend Fetch (For Client Portals)”If you want to render live, private user data directly in a browser (bypassing the Webflow CMS):
- Add a custom embed block to your Webflow page.
- Write a simple browser request script to fetch live data:
fetch('https://api.apinow.com/v1/your-api-slug/products', {headers: {'Authorization': 'Bearer YOUR_API_KEY'}}).then(response => response.json()).then(payload => {// Loop through payload.data and render items inside your HTML layout});
Glide Integration
Section titled “Glide Integration”Glide lets you build client portals and mobile layouts directly on top of external data. You can connect API Now! to Glide using Glide Tables Call API.
Setting Up a Live Data Source
Section titled “Setting Up a Live Data Source”- Open your Glide Layout editor.
- Go to the Data tab and select Add Table Get Data from API.
- Configure the connection settings:
- Method:
GET - URL: Enter your API Now! endpoint URL (e.g.,
https://api.apinow.com/v1/your-api-slug/products). - Headers: Add a header named
Authorizationwith the valueBearer YOUR_API_KEY.
- Method:
- Save & Query: Glide will fetch the JSON data, parse the list under the
dataarray automatically, and represent it as a readable grid sheet. - Bind these columns directly to your list cards, collection views, or detail components.