Skip to main content

GoDaddy

GoDaddy is a leading domain registrar, web hosting provider, and internet services company that offers domain name registration, website hosting, website builders, SSL certificates, email hosting, and various online business tools. As a comprehensive platform for managing online presence and digital assets, GoDaddy enables businesses and individuals to register and manage domain names, host websites and applications, secure online transactions with SSL/TLS certificates, and manage professional email accounts.

CategoryDNS & domains
DirectionQuery source
Sign-inAPI Key & Secret
Query languagesSQLite
Tables6
Query templates41
Websitegodaddy.com

Before you start​

Huntbase signs in to GoDaddy with API Key & Secret. Create the credential in GoDaddy first, then keep it to hand for the Connect step.

  1. Sign in to the GoDaddy developer portal and open the API Key and Secret page (developer.godaddy.com/keys).
  2. Create a key for the environment you want to query, either Production or OTE (the test environment).
  3. Copy both the key and the secret.
Watch out for
  • Production and OTE keys are separate. A production key and secret won't work against OTE, and vice versa.
  • GoDaddy is deprecating API key and secret credentials for the Domains APIs during 2026 in favour of personal access tokens, and v3 Domains endpoints don't accept them.

For the vendor's own instructions, see GoDaddy API authentication.

tip

Use a dedicated, read-only credential for Huntbase where the product allows it. Huntbase only needs to read.

Connect GoDaddy​

  1. Go to Connections and click New connection, or click New connection on the GoDaddy product page.
  2. On Product, pick GoDaddy and choose the Owner.
  3. On Details, give the connection a Name and, optionally, a Description.
  4. On Connect, fill in the settings and credentials described below.
  5. On Verify, review the summary and click Create & check.

For everything else on the setup page — saving a draft, I'll do this later, and what each check result means — see Connections.

Settings​

Where your GoDaddy lives:

FieldRequiredNotes
EnvironmentNoPROD for your live account (the default), or DEV for the OTE test environment. It must match the environment the key was created for. One of PROD, DEV.

Credentials​

The only Method is API Key & Secret. Enter a Credential label (for example Production), then fill in:

FieldRequiredNotes
API KeyYesSecret — not shown again after you save it.
API SecretYesSecret — not shown again after you save it.

Query it​

Once connected, GoDaddy can serve these languages in a query tab, and Scout can use it when you ask in Auto:

LanguageUse it for
SQLiteSQL over the 6 tables listed below, alongside every other connected source.

Example: SQLite​

Count orders per domain — Determine the areas in which your domains have the most orders to gain insights into your most popular domains.

select
domain_name,
count(*) as num_orders
from
godaddy_order
group by
domain_name;

GoDaddy ships with 41 query templates. Find them in Library › Queries — see Query templates.

Tables​

GoDaddy adds 6 tables. Browse their columns from Schema in the query bar's ⋯ menu.

All 6 tables
TableContains
godaddy_certificateReturns information about the GoDaddy certificate.
godaddy_dns_recordReturns information about the DNS record.
godaddy_domainReturns information about the GoDaddy domain.
godaddy_orderReturns information about the orders for the GoDaddy account.
godaddy_shopperReturns information about the GoDaddy shopper.
godaddy_subscriptionReturns information about the GoDaddy product subscription.

Next steps​