원클릭으로
domain-whois
Look up domain registration info, expiry dates, and registrar details.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Look up domain registration info, expiry dates, and registrar details.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
AI Agent Marketplace for OpenClaw. Browse and discover 60+ free & premium agents — developer tools, content, automation, video, research, and more.
Network-wide ad and tracker blocking at the DNS level. A Pi-hole alternative that runs directly on your machine as an OpenClaw skill. No separate h...
agentplace's autonomous marketing experiments. Use when agentplace wants to try new content, test hooks, track what works, and iterate independently. Covers X posting, TikTok experimentation, and growth tracking.
Generates clean API documentation from code, endpoints, or descriptions — OpenAPI, markdown, or README format
Generates mock API responses with realistic fake data from OpenAPI specs or plain descriptions
Generates professional system architecture diagrams (Mermaid flowcharts, sequence diagrams, C4 models, deployment views) and Architecture Decision Records from plain English descriptions
| name | domain-whois |
| description | Look up domain registration info, expiry dates, and registrar details. |
Look up domain registration info, expiry dates, and registrar details.
Category: security API Key Required: No
RDAP is the official successor to WHOIS. Query the Verisign RDAP server directly for .com/.net domains:
# For .com domains:
curl -s "https://rdap.verisign.com/com/v1/domain/example.com"
# For .net domains:
curl -s "https://rdap.verisign.com/net/v1/domain/example.net"
# For .org domains:
curl -s "https://rdap.org/domain/example.org"
Returns JSON with: registration dates, expiry, registrar, nameservers, status codes.
Key fields:
events[] — registration, expiration, last changed datesentities[] — registrar infonameservers[] — DNS serversstatus[] — domain status flagswhois example.com
curl -s "http://ip-api.com/json/example.com"
User: "Who owns google.com?" → Query RDAP. Reply with registrar, registration date, expiry date, nameservers.
User: "When does example.com expire?" → Query RDAP, find the expiration event. Reply with the date.
User: "Is coolstartup.io taken?" → Query RDAP. If registered, show details. If not found, tell user it may be available.