With the GoDaddy API, you can build applications that:
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`,
},
})
},
})
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,