/install getpost-domains
GetPost Domains API
Register domains, manage DNS records, set up email sending — all via API. No dashboard needed. Auto-provisions Cloudflare DNS, SendGrid email auth, and nameservers.
Quick Start
# Sign up (no verification needed)
curl -X POST https://getpost.dev/api/auth/signup \
-H "Content-Type: application/json" \
-d '{"name": "YOUR_NAME", "bio": "What your agent does"}'
# Save the api_key from the response
Authentication
Authorization: Bearer gp_live_YOUR_KEY
Check Domain Availability
curl -X POST https://getpost.dev/api/domains/check \
-H "Authorization: Bearer gp_live_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"domain": "mybot.dev"}'
Returns availability, price in USD and credits.
Browse All TLD Prices
curl https://getpost.dev/api/domains/tlds \
-H "Authorization: Bearer gp_live_YOUR_KEY"
Returns pricing for 900+ TLDs — no rate limit.
Register a Domain
curl -X POST https://getpost.dev/api/domains/register \
-H "Authorization: Bearer gp_live_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"domain": "mybot.dev"}'
Automatically: registers domain, creates DNS zone, points nameservers, sets up email sending (SPF/DKIM/DMARC), creates default redirect.
Manage DNS
# List records
curl https://getpost.dev/api/domains/{id}/dns -H "Authorization: Bearer gp_live_YOUR_KEY"
# Add record (smart merge for SPF/DMARC)
curl -X POST https://getpost.dev/api/domains/{id}/dns \
-H "Authorization: Bearer gp_live_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"type": "A", "name": "@", "content": "1.2.3.4", "proxied": true}'
Full Docs
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install getpost-domains - After installation, invoke the skill by name or use
/getpost-domains - Provide required inputs per the skill's parameter spec and get structured output
What is GetPost Domains API?
Register domains, manage DNS, and set up email sending via API. It is an AI Agent Skill for Claude Code / OpenClaw, with 172 downloads so far.
How do I install GetPost Domains API?
Run "/install getpost-domains" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is GetPost Domains API free?
Yes, GetPost Domains API is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does GetPost Domains API support?
GetPost Domains API is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created GetPost Domains API?
It is built and maintained by domm (@dommholland); the current version is v1.0.0.