Access Hostinger via the Hostinger API with managed credentials. Inspect domains, DNS records, VPS instances, websites, subscriptions, and hosting account details.
This skill uses ClawLink for hosted connection flows and credentials so you do not need to configure Hostinger API access yourself.
| Step 1: Install | Step 2: Pair Account | Step 3: Connect Hostinger |
|---|---|---|
| :---: | :---: | :---: |
| !Install | !Pair | App-specific connection GIF coming soon |
| Run the install command in OpenClaw | Sign in and approve the device | Open the dashboard and connect Hostinger |
┌─────────────────┐ ┌──────────────┐ ┌──────────────────┐
│ OpenClaw │────▶│ ClawLink │────▶│ Hostinger │
│ (User Chat) │ │ (OAuth) │ │ (API v1) │
└─────────────────┘ └──────────────┘ └──────────────────┘
│ │ │
│ 1. Install Plugin │ │
│ 2. Pair Device │ │
│ 3. Connect Hostinger │ │
│ │ 4. Secure Token │
│ │ 5. Proxy Requests │
│ │ │
▼ ▼ ▼
┌──────────┐ ┌──────────┐ ┌──────────┐
│ SKILL │ │ Dashboard│ │ Hostinger │
│ File │ │ Auth │ │ API │
└──────────┘ └──────────┘ └──────────┘
Install the verified ClawLink plugin from ClawHub. After the user confirms, complete the full setup so ClawLink tools are visible in the next OpenClaw chat.
openclaw plugins install clawhub:clawlink-plugin
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart
Then tell the user: "OpenClaw has been restarted. Send /new as a standalone message to start a fresh chat, then ask for Hostinger again."
# List domains
clawlink_call_tool --tool "hostinger_list_domains" --params '{}'
# Get DNS records
clawlink_call_tool --tool "hostinger_get_dns_records" --params '{"domain": "example.com"}'
# List VPS instances
clawlink_call_tool --tool "hostinger_list_vps" --params '{}'
All Hostinger tool calls are authenticated automatically by ClawLink using the user's connected Hostinger account.
No API key is required in chat. ClawLink stores the credentials securely and injects them into every Hostinger API request on the user's behalf.
clawlink_begin_pairing if it is not configured yet.clawlink_list_integrations to verify the connection is active.clawlink_list_integrations
Response: Returns all connected integrations. Look for hostinger in the list.
clawlink_list_tools --integration hostinger
Response: Returns the live tool catalog for Hostinger.
If Hostinger tools are missing or the connection shows an error:
clawlink_list_integrations to verifyclawlink_list_tools --integration hostinger| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
hostinger_list_domains | List all domains in the account | Read |
hostinger_get_domain | Get details for a specific domain | Read |
hostinger_check_domain_availability | Check if a domain name is available for registration | Read |
hostinger_get_domain_dnssec | Get DNSSEC configuration for a domain | Read |
hostinger_get_domain_ownership_status | Get domain ownership verification status | Read |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
hostinger_list_dns_records | List all DNS records for a domain | Read |
hostinger_get_dns_records | Get DNS records for a domain | Read |
hostinger_create_dns_record | Create a new DNS record | Write |
hostinger_update_dns_record | Update an existing DNS record | Write |
hostinger_delete_dns_record | Delete a DNS record | Write |
hostinger_list_dns_snapshots | List DNS snapshots for a domain | Read |
hostinger_restore_dns_snapshot | Restore DNS from a snapshot | Write |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
hostinger_get_dns_zone | Get the full DNS zone for a domain | Read |
hostinger_create_dns_zone | Create a new DNS zone | Write |
hostinger_delete_dns_zone | Delete a DNS zone | Write |
hostinger_list_domain_forwardings | List forwarding rules for a domain | Read |
hostinger_create_domain_forwarding | Create a domain forwarding rule | Write |
hostinger_delete_domain_forwarding | Delete a domain forwarding rule | Write |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
hostinger_list_websites | List all websites on the account | Read |
hostinger_get_website | Get details for a specific website | Read |
hostinger_website_stats | Get traffic and resource usage stats | Read |
hostinger_list_ssl_certificates | List SSL certificates for a website | Read |
hostinger_install_ssl | Install an SSL certificate on a website | Write |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
hostinger_list_vps | List all VPS instances | Read |
hostinger_get_vps | Get details for a specific VPS | Read |
hostinger_get_vps_stats | Get resource usage stats for a VPS | Read |
hostinger_list_vps_templates | List available VPS OS templates | Read |
hostinger_list_vps_backups | List backups for a VPS | Read |
hostinger_list_vps_snapshots | List snapshots for a VPS | Read |
hostinger_get_vps_snapshot | Get a specific VPS snapshot | Read |
hostinger_create_vps_snapshot | Create a new VPS snapshot | Write |
hostinger_delete_vps_snapshot | Delete a VPS snapshot | Write |
hostinger_list_vps_ssh_keys | List SSH keys configured for VPS | Read |
hostinger_reboot_vps | Reboot a VPS instance | Write |
hostinger_start_vps | Start a stopped VPS instance | Write |
hostinger_stop_vps | Stop a running VPS instance | Write |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
hostinger_list_subscriptions | List all subscriptions on the account | Read |
hostinger_get_subscription | Get details for a specific subscription | Read |
hostinger_list_orders | List orders and invoices | Read |
hostinger_get_order | Get details for a specific order | Read |
hostinger_get_account_info | Get account information and settings | Read |
| Tool | Description | Mode |
|---|---|---|
| ------ | ------------- | ------ |
hostinger_get_whois | Get WHOIS information for a domain | Read |
hostinger_list_data_centers | List available data center locations | Read |
clawlink_call_tool --tool "hostinger_list_domains" \
--params '{}'
clawlink_call_tool --tool "hostinger_get_dns_records" \
--params '{
"domain": "example.com"
}'
clawlink_call_tool --tool "hostinger_create_dns_record" \
--params '{
"domain": "example.com",
"type": "A",
"name": "www",
"content": "192.0.2.1",
"ttl": 3600
}'
clawlink_call_tool --tool "hostinger_list_vps" \
--params '{}'
clawlink_call_tool --tool "hostinger_list_subscriptions" \
--params '{}'
clawlink_call_tool --tool "hostinger_check_domain_availability" \
--params '{
"domain": "newdomain.com"
}'
clawlink_list_integrations to confirm Hostinger is connected.clawlink_list_tools --integration hostinger to see the live catalog.clawlink_search_tools with a short query and integration hostinger.┌─────────────────────────────────────────────────────────────┐
│ READ OPERATIONS (Safe) │
│ list → get → check → call │
│ │
│ Example: List domains → Get DNS records → Show results │
└─────────────────────────────────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────┐
│ WRITE OPERATIONS (Require Confirmation) │
│ describe → preview → confirm → call │
│ │
│ Example: Describe tool → Preview → User approves │
│ → Execute DNS change │
└─────────────────────────────────────────────────────────────┘
clawlink_describe_tool first.whenToUse, askBefore, safeDefaults, examples, and followups to shape the call.clawlink_preview_tool first.clawlink_call_tool. Pass confirmation only after the preview matches the user's intent.| Status / Error | Meaning |
|---|---|
| ---------------- | --------- |
| Tool not found | The tool name does not exist in the current catalog. Verify with clawlink_list_tools --integration hostinger. |
| Missing connection | Hostinger is not connected. Direct the user to https://claw-link.dev/dashboard?add=hostinger. |
RESOURCE_NOT_FOUND | Domain, VPS, or other resource does not exist. Check the identifier. |
INVALID_ARGUMENT | Invalid parameter or missing required field. Review the tool schema with clawlink_describe_tool. |
| Write rejected | User did not confirm a write action. Always confirm before executing writes. |
```bash
openclaw plugins list
```
/new as a standalone message to reload the catalog.```bash
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart
```
/new again and retry.hostinger.clawlink_describe_tool to verify parameter names and types before calling.clawlink_preview_tool first.Powered by ClawLink — an integration hub for OpenClaw
共 2 个版本