Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand All @@ -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);
Expand Down