Name.com
Connect Name.com with Webflow to publish sites on custom domains and automate domain and DNS management through both platforms' APIs.
Webflow hosts the site, but the domain itself lives at a registrar, and Webflow only reaches it through DNS records set wherever that domain's DNS is managed. That split is where launches go wrong. Get a record value wrong and the site fails to publish; overwrite the wrong record and the company's email goes down with it.
Name.com is where a lot of those domains sit. Connecting one to a Webflow site means adding three records in Name.com's DNS panel: an A record for the root domain, a CNAME for www, and a TXT record Webflow uses to verify ownership. For teams holding domains at volume, Name.com's Core API and Webflow's Data API do the same work from a script, and Name.com now ships an MCP server so an agent can run domain and DNS operations under your credentials.
Freelancers launching one site do this once, in two dashboards, and agencies holding client portfolios at Name.com repeat the same three records on every launch. Platform teams handing each customer their own domain go further and drive registration, DNS, and publishing from code.
How to integrate Name.com with Webflow
What is Name.com? Name.com is an ICANN-accredited domain registrar and part of Identity Digital, founded in 2003. Alongside registration it handles DNS management, domain transfers, email services, and a REST API for programmatic domain operations.

Teams pair the two platforms when their domains sit at Name.com and their sites run on Webflow hosting. The connection happens at the DNS layer, or through each platform's REST API. Name.com publishes no Webflow app and no pre-built automation connector, so you wire up either path yourself.
Two approaches exist. Adding the Webflow DNS records at Name.com points the domain at Webflow hosting without writing any code, and it covers almost every site. Building with the Webflow and Name.com APIs gives you programmatic control over registration, DNS records, and publishing, and it earns its server-side development cost only once you manage domains at volume.
Add the Webflow DNS records at Name.com
Manual entry is the method for Name.com domains, because its DNS panel has no Webflow template. You need a paid Site plan on the Webflow site and Name.com's default nameservers active on the domain. Read the record values from Site settings rather than from any tutorial, including this one: the TXT value is specific to your site.
To set up the integration:
- In Site settings > Publishing > Production, click Add a custom domain and choose the manual option. Copy the A, CNAME, and TXT values shown.
- At Name.com, go to MY DOMAINS, click the domain, and open Manage DNS Records.
- Add an A record. Leave Host blank, set Answer to
198.202.211.1, keep TTL at 300, and click Add Record. Webflow uses a single A record, so do not add a second one. - Add a CNAME record with
wwwas Host andcdn.webflow.comas Answer. - Add a TXT record with
_webflowas Host and the site-specific value beginningone-time-verification=as Answer. - Back in Site settings, click Verify domain.
- Once verified, click Publish > Publish to selected domains.
A few things block or break the connection:
- Legacy record values no longer publish: Domains still pointing at
proxy-ssl.webflow.com,75.2.70.75, or99.83.190.102were blocked on January 13, 2026. Those values are retired, not a second supported option (migration guide). - Existing MX records have to survive the edit: Webflow hosts the site, not the mail, so every MX record stays exactly as the mail provider set it. Clearing the zone or replacing records wholesale while adding the A record takes email offline.
- Extra A records on the root conflict: Remove any other root A record, including the wildcard
*record Name.com's own guide suggests for generic hosting (troubleshooting guide). - The root needs an A record, not a CNAME: Name.com does not allow a CNAME on the bare domain, which is why
wwwgets the CNAME and the root gets the A record (DNS record types). - Records apply only on Name.com's nameservers: Delegate DNS to a third-party host and the Webflow records belong at that provider instead, where Name.com's panel no longer has any effect.
- Keep
wwwas the default domain unless you have deliberately configured the root as default. Switching the default without matching DNS can produce a redirect loop.
Publishing is what actually applies the connection, so republish once the records verify.
Connect a subdomain
A subdomain such as blog.yourdomain.com can point at its own Webflow site while the root serves something else. That takes a CNAME record plus a _webflow TXT record for verification.
To connect a subdomain manually:
- At Name.com, open Manage DNS Records and add a CNAME with the subdomain label, for example
blog, as Host andcdn.webflow.comas Answer (CNAME guide). - Add a TXT record with
_webflowas Host and the verification value shown in Site settings as Answer. - In Site settings > Publishing > Production, add the subdomain, verify it, and publish.
Webflow also offers Quick connect, which writes these records for you through Entri, but only for registrars on Entri's supported-provider list. Start that flow and check whether Name.com appears in it; if it does not, the manual steps above are the path.
Build with the Webflow and Name.com APIs
Both platforms expose REST APIs, so registration, DNS records, and publishing can all run from one script. Name.com's current API is CORE v1, released in June 2025, and it authenticates with HTTP Basic Auth using an API username and token. The older v4 API still works but sunsets at an unannounced point in 2026, so build new work against CORE v1. Webflow's Data API v2 authenticates with a Bearer token, and the v1 API is deprecated. Either path needs server-side code.
What each side covers:
- Name.com Core API: Handles domain search and availability checks, registration, DNS records, transfers, email forwarding, and webhook notifications.
- Webflow Data API: Handles sites and publishing, along with Webflow CMS collections and items.
- Webflow webhooks: Fire on site events such as
form_submissionandsite_publish, though webhooks created in the dashboard rather than the API arrive without the headers needed to validate signatures. - Name.com MCP server: Exposes Core API operations to an agent through
npx namecom-mcp@latest, with the API username and token passed as environment variables.
Generate a Webflow token under Site settings > Apps & Integrations > API access, and a Name.com token under Settings > API Tokens (token guide). Scope is worth thinking about before an agent holds either credential: a Name.com production token can register domains, delete them, and rewrite a live zone, so keep development on a sandbox token and treat the production one as a publishing credential rather than a convenience.
Check domain availability from a Webflow form
A Webflow form plus a server-side handler is enough for a live availability check, which is the core of any registration flow or reseller storefront built on Webflow. The handler takes the submitted name, queries Name.com, and returns the result to the browser.
To implement this:
- Test against the Name.com sandbox at
https://api.dev.name.comwith a-testsuffix on your username (testing guide). New sandbox credentials can take up to 15 minutes to activate, so confirm connectivity withGET /core/v1/hellofirst. - For an interactive result, have browser-side code post the submitted name to your handler. For asynchronous processing instead, register a webhook with
POST /v2/sites/{site_id}/webhooksand settriggerTypetoform_submission(webhook reference). - In a webhook handler, validate the
x-webflow-signatureheader against thex-webflow-timestamp, then send the submitted name toPOST /core/v1/domains:checkAvailability(endpoint reference). Leave the colon in that path unencoded. - To register the domain the visitor chose, call
POST /core/v1/domainswith the domain name in the request body (quickstart).
Webflow's signature is a SHA-256 HMAC signed with either the site token secret or your OAuth app's client secret, so reject anything that fails that check before it reaches the registrar API.
Automate DNS setup and site publishing
For agencies and platforms launching many sites, record creation and publishing run from the same script once the custom domain is attached to the Webflow site. Attaching a brand new custom domain still happens in Site settings.
To implement this:
- Create the three Webflow records with
POST /core/v1/domains/{domainName}/records, passingtype,host,answer, andttlfor each (create record reference). - Read the site's
customDomainsarray fromGET /v2/sites/{site_id}to get each domain's ID (sites reference). - Publish to those domains with the publish endpoint:
const site = await webflow.sites.publish("SITE_ID", {
customDomains: ["CUSTOM_DOMAIN_ID_1", "CUSTOM_DOMAIN_ID_2"],
publishToWebflowSubdomain: true,
});
To watch domain health afterwards, subscribe to Name.com webhook notifications with POST /core/v1/notifications. Events report transfers, expirations, and lock changes, and every request carries an X-NAMECOM-SIGNATURE header for HMAC verification (webhook overview).
What you can build with the Name.com Webflow integration
Integrating Name.com with Webflow lets every site in a portfolio run on its own domain without moving registrars or repeating manual DNS work at each launch.
The pairing supports several patterns:
- Client site launches at agency scale: Manage every client domain from one Name.com account, then use its bulk domain tools to edit nameservers or add and delete DNS records across a selection of domains at once.
- A domain search tool on your own site: Send a Webflow form entry to a handler that calls
domains:checkAvailabilityand returns live results to the visitor. Pair it with Name.com's reseller program and the same page can sell the domain it just found. - Custom domains for every customer of a product: A provisioning layer can check availability, register the domain, set nameservers, and hand back a working hostname during signup, which is the pattern behind most white-label domain features.
- Branded email alongside the site: Add the mail provider's MX records in the same Name.com panel that holds the site records, since Webflow hosting does not include email.
Both API paths run on the same Webflow credential that publishes the site, which means the script that connects a domain can drive the site's content too. See how to apply custom code to pages through the Data API.
Frequently asked questions
No, as long as the domain still uses Name.com's default nameservers. Add the three Webflow records in Name.com's DNS panel and leave the nameservers alone. Records added at Name.com only work while those nameservers are active, so if you delegate DNS to another host you manage the Webflow records there instead, and Name.com's URL forwarding stops working.
No. There is no Name.com app in the Webflow Apps Marketplace, and Name.com's DNS templates cover GitHub Pages, Shopify, Squarespace, and WordPress.com rather than Webflow. Enter the A, CNAME, and TXT records by hand, reading the values from Site settings.
Name.com says a newly added A record should be working within 24 hours (A record guide). A nameserver change is slower, taking roughly 48 hours to propagate (nameserver guide). So plan for 24 to 48 hours depending on which you changed, and watch the domain's status in Site settings > Publishing > Production while it settles.
Yes. A custom domain needs a paid Site plan on that site; the free Starter plan publishes only to a
webflow.iosubdomain. Current Webflow Site plans are Starter, Basic, and Premium, and the domain itself stays registered and billed at Name.com either way.No. Webflow provisions and renews the certificate automatically once DNS points at Webflow, and it stays on for hosted sites (SSL hosting). One caveat applies at the registrar: if the domain carries CAA records, they have to allow Webflow's certificate authorities or issuance fails (CAA guide).
Description
Point a Name.com domain at a Webflow site with three DNS records, or drive domain registration and DNS at scale through the Name.com Core API and publish through the Webflow Data API.
This integration page is provided for informational and convenience purposes only.

iPage by Network Solutions
Connect your iPage domain and hosting services with Webflow to leverage affordable hosting infrastructure while maintaining complete design control.
Host Europe
Serve a Webflow site on your Host Europe .de domain with three records in the KIS DNS editor.
Hover
Connect Hover, a domain registrar by Tucows, with Webflow to point a custom domain to your Webflow site while keeping domain registration and DNS management at Hover.
Google Domains
Connect Google Domains, now Squarespace Domains, with Webflow to point your registered domain at a Webflow-hosted site through DNS records.

Gandi
Point your Gandi domain name to Webflow

GoDaddy (domaincontrol.com)
Point your GoDaddy domain to a Webflow-hosted site by editing its DNS records.

Freeparking
Point Freeparking-registered domains to Webflow-hosted sites through DNS configuration.
Enom

DreamHost
Connect DreamHost's reliable hosting infrastructure with Webflow to manage domains, deploy exported sites, and create powerful hybrid architectures. Leverage DreamHost's DNS management, email hosting, and flexible server options while maintaining Webflow's design capabilities.


