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.
| Category | DNS & domains |
| Direction | Query source |
| Sign-in | API Key & Secret |
| Query languages | SQLite |
| Tables | 6 |
| Query templates | 41 |
| Website | godaddy.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.
- Sign in to the GoDaddy developer portal and open the API Key and Secret page (
developer.godaddy.com/keys). - Create a key for the environment you want to query, either Production or OTE (the test environment).
- Copy both the key and the secret.
- 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.
Use a dedicated, read-only credential for Huntbase where the product allows it. Huntbase only needs to read.
Connect GoDaddy
- Go to Connections and click New connection, or click New connection on the GoDaddy product page.
- On Product, pick GoDaddy and choose the Owner.
- On Details, give the connection a Name and, optionally, a Description.
- On Connect, fill in the settings and credentials described below.
- 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:
| Field | Required | Notes |
|---|---|---|
| Environment | No | PROD 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:
| Field | Required | Notes |
|---|---|---|
| API Key | Yes | Secret — not shown again after you save it. |
| API Secret | Yes | Secret — 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:
| Language | Use it for |
|---|---|
| SQLite | SQL 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
| Table | Contains |
|---|---|
godaddy_certificate | Returns information about the GoDaddy certificate. |
godaddy_dns_record | Returns information about the DNS record. |
godaddy_domain | Returns information about the GoDaddy domain. |
godaddy_order | Returns information about the orders for the GoDaddy account. |
godaddy_shopper | Returns information about the GoDaddy shopper. |
godaddy_subscription | Returns information about the GoDaddy product subscription. |
Next steps
- Connections — health, credentials and settings after you connect
- Query languages — syntax, parameters and time ranges
- Chatting with Scout — ask questions without writing a query
- All integrations — the rest of the catalog