Install
openclaw skills install domainforagentsSearch, register, and manage internet domains for AI agents via DomainForAgents API.
openclaw skills install domainforagentsRegister and manage internet domains programmatically. No browser signup, no CAPTCHA.
Use when the user wants to:
Install the MCP server for native tool access:
claude mcp add domainforagents -- npx @domainforagents/mcp
Set your API key:
export DOMAINFORAGENTS_API_KEY="your-key"
Base URL: https://api.domainforagents.io/api/v1
All requests need Authorization: Bearer YOUR_API_KEY (except account creation).
No signup form needed. One API call:
curl -X POST https://api.domainforagents.io/api/v1/auth/register \
-H "Content-Type: application/json" \
-d '{"name": "my-agent"}'
Response includes api_key (use immediately) and claim_code (for human account access).
curl "https://api.domainforagents.io/api/v1/domains/search?query=example.com" \
-H "Authorization: Bearer API_KEY"
curl -X POST https://api.domainforagents.io/api/v1/domains/suggest \
-H "Authorization: Bearer API_KEY" \
-H "Content-Type: application/json" \
-d '{"description": "online store for vintage cameras"}'
curl -X POST https://api.domainforagents.io/api/v1/domains/register \
-H "Authorization: Bearer API_KEY" \
-H "Content-Type: application/json" \
-d '{"name": "example.com"}'
curl -X POST https://api.domainforagents.io/api/v1/domains/DOMAIN_ID/dns \
-H "Authorization: Bearer API_KEY" \
-H "Content-Type: application/json" \
-d '{"name": "@", "type": "A", "content": "76.76.21.21", "ttl": 3600}'
curl https://api.domainforagents.io/api/v1/balance \
-H "Authorization: Bearer API_KEY"
curl https://api.domainforagents.io/api/v1/payments/solana/deposit \
-H "Authorization: Bearer API_KEY"
.com, .net, .org, .io, .dev, .ai, .app, .co, .xyz, .me, .tech, .cloud, and more global TLDs. Country-code TLDs (.nz, .uk, .de) are not supported.