From a9af74ea37583cacb2be69cc631bb2ea5723d3b5 Mon Sep 17 00:00:00 2001 From: Tim McMackin Date: Mon, 23 Feb 2026 07:56:35 -0500 Subject: [PATCH 1/2] This is a variable defined above, not a string --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fbca0219..8a0d59fc 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ const custom_domain_id_2 = process.env.CUSTOM_DOMAIN_ID_2; const sites = await webflow.sites.list(); // Get Site -const site = await webflow.sites.get("site_id"); +const site = await webflow.sites.get(site_id); // Get Custom Domains const customDomains = await webflow.sites.getCustomDomain(site_id); From dbce780327bea1909c6e8e46bed5a92e2baee8b2 Mon Sep 17 00:00:00 2001 From: Tim McMackin Date: Mon, 23 Feb 2026 07:57:08 -0500 Subject: [PATCH 2/2] Show the correct package name --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8a0d59fc..a4b5e15e 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ $ yarn add webflow-api ## Usage -Simply import `Webflow` and start making calls to our API. +Simply import `webflow-api` and start making calls to our API. ```javascript import { WebflowClient } from "webflow-api";