# Send GoDaddy API to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "godaddy-api",
    "name": "GoDaddy API",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/solarx56/godaddy-api",
    "canonicalUrl": "https://clawhub.ai/solarx56/godaddy-api",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/godaddy-api",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=godaddy-api",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "assets/payload-templates/certificate-create.json",
      "assets/payload-templates/dns-records-replace.json",
      "assets/payload-templates/purchase-domain.json",
      "references/auth-and-env.md",
      "references/endpoints.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "godaddy-api",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-03T19:27:27.121Z",
      "expiresAt": "2026-05-10T19:27:27.121Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=godaddy-api",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=godaddy-api",
        "contentDisposition": "attachment; filename=\"godaddy-api-1.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "godaddy-api"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/godaddy-api"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/godaddy-api",
    "downloadUrl": "https://openagent3.xyz/downloads/godaddy-api",
    "agentUrl": "https://openagent3.xyz/skills/godaddy-api/agent",
    "manifestUrl": "https://openagent3.xyz/skills/godaddy-api/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/godaddy-api/agent.md"
  }
}
```
## Documentation

### Setup

export GODADDY_API_BASE_URL="https://api.godaddy.com"  # or https://api.ote-godaddy.com
export GODADDY_API_KEY="your-key"
export GODADDY_API_SECRET="your-secret"

Keys: https://developer.godaddy.com/keys

### Shell scripts

scripts/gd-domains.sh — list/get/availability, validate purchase, purchase, renew, transfer, update, update contacts, delete, privacy on/off, domain agreements get/accept
scripts/gd-dns.sh — get all/type/name, patch add, replace all/type/type+name, delete type+name
scripts/gd-certs.sh — create/validate/get/actions/download/renew/reissue/revoke/verify domain control
scripts/gd-shoppers.sh — get/update/delete shopper
scripts/gd-subscriptions.sh — list/get/cancel subscription
scripts/gd-agreements.sh — list legal agreements
scripts/gd-countries.sh — list countries
scripts/gd-aftermarket.sh — list/get aftermarket listings

Destructive/financial actions prompt for confirmation.

### MCP server

Path: scripts/mcp-server/

cd scripts/mcp-server
npm install
npm run build
node dist/index.js

Exposes MCP tools for all skill operations (domains, DNS, certs, shoppers, subscriptions, agreements, countries, aftermarket).

Example MCP config:

{
  "mcpServers": {
    "godaddy": {
      "command": "node",
      "args": ["path/to/mcp-server/dist/index.js"],
      "env": {
        "GODADDY_API_BASE_URL": "https://api.godaddy.com",
        "GODADDY_API_KEY": "",
        "GODADDY_API_SECRET": ""
      }
    }
  }
}

### References

references/endpoints.md — complete endpoint map
references/auth-and-env.md — auth/env setup
references/request-bodies.md — payload examples
references/error-handling.md — troubleshooting
references/safety-playbook.md — safe operation patterns
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: solarx56
- Version: 1.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-03T19:27:27.121Z
- Expires at: 2026-05-10T19:27:27.121Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/godaddy-api)
- [Send to Agent page](https://openagent3.xyz/skills/godaddy-api/agent)
- [JSON manifest](https://openagent3.xyz/skills/godaddy-api/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/godaddy-api/agent.md)
- [Download page](https://openagent3.xyz/downloads/godaddy-api)