GoDaddy

GoDaddy’s here to help you turn your ideas into reality and succeed online.

Go to site
Explore
/
Apps
/
GoDaddy

GoDaddy API Integrations

Build and run workflows using the GoDaddy API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

With the GoDaddy API, you can build applications that:

  • Automate the process of registering and managing domains
  • Enable end-users to manage their domain names and settings
  • Allow resellers to manage domain names on behalf of their customers
  • Provide access to GoDaddy's extensive domain name search data
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    godaddy: {
      type: "app",
      app: "godaddy",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.godaddy.com/v1/domains/available`,
      headers: {
        "Authorization": `sso-key ${this.godaddy.$auth.api_key}:${this.godaddy.$auth.api_secret}`,
      },
      params: {
        domain: `example.guru`,
      },
    })
  },
})

Authentication

GoDaddy uses API keys for authentication. When you connect your GoDaddy account, Pipedream securely stores the keys so you can easily authenticate to GoDaddy APIs in both code and no-code steps.

To retrieve your API keys,

  • Navigate to your GoDaddy Developer Portal and sign in
  • Go to “API Keys”