npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

n8n-nodes-godaddy

v0.2.0

Published

Unofficial n8n community node for the GoDaddy Domains v3 API. Generated from the official OpenAPI spec and kept in sync automatically. Not affiliated with GoDaddy Inc.

Readme

Every operation is generated from GoDaddy's official OpenAPI spec and re-synced weekly by CI, so the node never drifts from the API.

⚠️ Not affiliated with, endorsed by, or sponsored by GoDaddy Inc. The GoDaddy name and logo are trademarks of GoDaddy Operating Company, LLC, used here only to identify the API this node talks to.


✨ Features

| Category | What you get | | ---------------- | ------------------------------------------------------------------------------- | | Discovery | Availability checks and name suggestions with price/term data | | Registration | Quote → register → poll, the full purchase flow including consent payloads | | Domains | Read registered domains, replace nameservers | | DNS | List, create, delete — A, AAAA, ALIAS, CAA, CNAME, MX, NS, SOA, SRV, TXT | | Operations | Poll long-running async domain operations | | Mock Data | Spec-derived sample responses with no credential — build workflows offline | | Environments | Production and OTE sandbox toggle on the credential, so test buys cost nothing | | AI-ready | usableAsTool: true — attach it directly to an AI Agent as a tool |


📦 Installation

n8n Community Nodes (recommended)

  1. Open Settings → Community Nodes
  2. Click Install
  3. Enter n8n-nodes-godaddy
  4. Click Install

npm (self-hosted)

npm install n8n-nodes-godaddy

🔑 Credentials

  1. Generate a Personal Access Token in the GoDaddy developer dashboard
  2. In n8n: Credentials → New → GoDaddy API

| Field | Description | | ------------------------- | --------------------------------------------------------------------------- | | Environment | Production (api.godaddy.com) or OTE Test (api.ote-godaddy.com) | | Personal Access Token | PAT from the developer dashboard |

Auth is sent as Authorization: Bearer <PAT>. The credential ships a test request, so Test verifies the token before you save it.

💸 Registration charges real money. Point the credential at OTE and rehearse the whole quote → register flow there before switching to Production.


📚 Operations

| Resource | Operation | Endpoint | | ---------------- | ---------------------- | ------------------------------------------- | | Discovery | Check Availability | GET /check-availability | | Discovery | Suggest | GET /suggestions | | Registration | Quote | POST /registration-quotes | | Registration | Register | POST /registrations | | Registration | Get | GET /registrations/{registrationId} | | Domain | Get | GET /domain-names/{domain-name} | | Domain | Update Nameservers | PUT /domain-names/{domain-name}/nameservers | | DNS Record | List | GET /zones/{zone}/dns-records | | DNS Record | Create | POST /zones/{zone}/dns-records | | DNS Record | Delete | DELETE /zones/{zone}/dns-records/{recordId} | | Operation | Get | GET /operations/{operationId} |

Which operations are exposed is hand-curated in scripts/allowlist.json — the parameters, types, and options behind each are generated from the spec.


🚀 Quick Start

Example: check a domain, then create an A record

{
	"nodes": [
		{
			"parameters": {
				"resource": "discovery",
				"operation": "checkAvailability",
				"domain": "sunrisebakery.com"
			},
			"type": "n8n-nodes-godaddy.goDaddy",
			"typeVersion": 1,
			"position": [0, 0],
			"name": "Check Availability",
			"credentials": { "goDaddyApi": { "id": "1", "name": "GoDaddy account" } }
		},
		{
			"parameters": {
				"resource": "dnsRecord",
				"operation": "create",
				"zone": "sunrisebakery.com",
				"name": "www",
				"type": "A",
				"data": "203.0.113.10",
				"ttl": 3600
			},
			"type": "n8n-nodes-godaddy.goDaddy",
			"typeVersion": 1,
			"position": [220, 0],
			"name": "Create A Record",
			"credentials": { "goDaddyApi": { "id": "1", "name": "GoDaddy account" } }
		}
	],
	"connections": {
		"Check Availability": { "main": [[{ "node": "Create A Record", "type": "main", "index": 0 }]] }
	}
}

Registration flow

Registration is a three-step, asynchronous purchase — don't try to shortcut it:

Quote  ──►  Register  ──►  Operation: Get
(POST /registration-quotes)   (needs quoteToken + consent)   (poll until status is done)
  1. Quote returns a quoteToken plus the exact price and the consent text the buyer must agree to.
  2. Register takes that quoteToken and a Consent object (agreement keys, timestamp, buyer IP).
  3. Register responds with an operation — poll Operation → Get until it settles.

🧪 Mock Data mode

Every operation has a Mock Data toggle. Turn it on and the node returns a deterministic sample response built from the spec's own schemas — no credential, no network call, no charges.

Use it to wire up branches, expressions, and downstream nodes before you have an account, then flip it off.


🏗 Architecture

Nothing operation-specific is written by hand. The OpenAPI document is the source of truth:

scripts/spec/domains-v3.json     # pinned spec, fetched from developer.godaddy.com
scripts/allowlist.json           # which operations get exposed  (hand-curated)
scripts/generate.mjs             # spec + allowlist → descriptions / registry / mocks

nodes/GoDaddy/descriptions/      # GENERATED  n8n UI property definitions
nodes/GoDaddy/registry.ts        # GENERATED  operation → method / path / param mapping
nodes/GoDaddy/mocks.ts           # GENERATED  deterministic sample responses
nodes/GoDaddy/request.ts         #            registry-driven request builder
nodes/GoDaddy/GoDaddy.node.ts    #            one generic executor for every operation

Never hand-edit the generated files — CI fails if they drift from the spec.


🔄 Staying in sync with the spec

GoDaddy publishes no release feed or changelog for this API; the JSON at https://developer.godaddy.com/openapi/domains-v3.json is the changelog.

The Update GoDaddy spec workflow re-fetches it every Monday. If the stored copy differs at all — version bump or silent content edit — it regenerates the node, bumps the package version, and opens a PR with the diff.

Manually:

npm run fetch-spec   # re-download the spec and pin its version
npm run generate     # regenerate descriptions / registry / mocks
npm run build && npm run lint

🛠 Development

npm install --ignore-scripts   # skips the isolated-vm native build; not needed for tsc/eslint
npm run build                  # generate → tsc → copy icons + codex
npm run dev                    # tsc watch mode
npm run lint                   # eslint-plugin-n8n-nodes-base
npm run format                 # prettier

📋 Requirements

  • n8n with community nodes enabled
  • Node.js ≥ 20.15
  • GoDaddy account with a Personal Access Token

🤝 Contributing

PRs welcome. Two rules:

  1. Adding an operation means editing scripts/allowlist.json and re-running npm run generate — not editing descriptions/.
  2. Run npm run build && npm run lint before you push; CI runs the same thing.

🐛 Found a bug? Open an issue


📄 License

MIT

👤 Author

froggy1014github.com/froggy1014

🔗 Links