docs/integrations/app-connections/godaddy.mdx
Infisical supports connecting to the GoDaddy Certificates API using a GoDaddy API Key and Secret. This connection powers the GoDaddy Certificate Authority for issuing Domain Validated (DV) certificates.
<Note> Only **production** GoDaddy API credentials are supported. GoDaddy's OTE (test) environment cannot issue certificates without a provisioned product, so Infisical always targets `api.godaddy.com`. </Note>Copy both the **Key** and the **Secret**. The secret is shown only once.

</Step>
<Step title="Select GoDaddy Connection">
Click **Add Connection** and choose **GoDaddy** from the list of available connections.
</Step>
<Step title="Fill out Connection Form">
Complete the form with:
- A **name** for the connection (e.g. `godaddy-prod`)
- An optional **description**
- Your GoDaddy **API Key**
- Your GoDaddy **API Secret**
</Step>
<Step title="Connection Created">
After clicking **Create**, Infisical validates the credentials against the GoDaddy
Certificates API. Once confirmed, the connection is ready to use in a GoDaddy Certificate
Authority.
</Step>
</Steps>
### Sample request
```bash Request
curl --request POST \
--url https://app.infisical.com/api/v1/app-connections/godaddy \
--header 'Content-Type: application/json' \
--data '{
"name": "my-godaddy-connection",
"method": "api-key",
"credentials": {
"apiKey": "<YOUR-GODADDY-API-KEY>",
"apiSecret": "<YOUR-GODADDY-API-SECRET>"
}
}'
```
### Sample response
```bash Response
{
"appConnection": {
"id": "a1b2c3d4-86f7-4026-a95e-efb8aeb0d8e6",
"name": "my-godaddy-connection",
"description": null,
"version": 1,
"orgId": "6f03caa1-a5de-43ce-b127-95a145d3464c",
"createdAt": "2026-06-01T00:00:00.000Z",
"updatedAt": "2026-06-01T00:00:00.000Z",
"isPlatformManagedCredentials": false,
"app": "godaddy",
"method": "api-key",
"credentials": {}
}
}
```