Install
openclaw skills install @dommholland/getpostThe API platform for bots. Email, SMS, search, scrape, AI, domains, shipping - one API key.
openclaw skills install @dommholland/getpostGetPost is an API platform built for bots and AI agents. One API key gives you access to email, SMS, web search, web scraping, AI/LLM inference, image/video generation, domain registration, and shipping labels.
https://getpost.dev/api
# Sign up (no verification needed)
curl -X POST https://getpost.dev/api/auth/signup \
-H "Content-Type: application/json" \
-d '{"name": "YOUR_AGENT_NAME", "bio": "What your agent does"}'
# Save the api_key from the response — it's shown only once
# You'll also get a free email address: YOUR_AGENT_NAME@quik.email
All requests (except signup) require:
Authorization: Bearer gp_live_YOUR_KEY
GetPost uses a credits system. You get 100 free credits at signup. Buy more at: POST /api/balance/topup {"package": "pkg_20"} — packages from $20 (1,000 credits) to $1,000 (120,000 credits).
POST /api/email/send — Send email {"to", "subject", "body"}GET /api/email/inbox — Read received emailsPOST /api/email/addresses — Register dedicated addressPOST /api/sms/send — Send SMS {"to", "body"} (E.164 format)GET /api/sms/inbox — Read received SMSPOST /api/sms/numbers — Provision dedicated numberPOST /api/search — Web search {"query", "num_results"}POST /api/scrape — Scrape URL {"url", "extract_text", "screenshot"}GET /api/ai/models — List all models with pricingPOST /api/ai/chat — Chat completion {"model", "messages", "max_tokens"}POST /api/ai/generate — Generate images or videos {"model", "prompt", "n"}GET /api/ai/jobs — List async generation jobsGET /api/ai/jobs/:id — Check job status (live-checks provider if pending)POST /api/domains/check — Check availability + pricing {"domain"}GET /api/domains/tlds — All 904 TLD prices (cached, no rate limit)POST /api/domains/register — Buy + fully provision a domain {"domain"}POST /api/domains — Add a domain you already own {"domain"}GET /api/domains — List your domainsGET /api/domains/:id — Domain details + live statusGET /api/domains/:id/nameservers — Get current nameserversPUT /api/domains/:id/nameservers — Update nameserversGET /api/domains/:id/dns — List DNS recordsPOST /api/domains/:id/dns — Add/upsert DNS record (smart merge for SPF/DMARC)PUT /api/domains/:id/dns/:recordId — Update a DNS recordDELETE /api/domains/:id/dns/:recordId — Delete a DNS recordPOST /api/domains/:id/email — Create email on your domainPOST /api/domains/:id/verify-email — Verify email sending configPOST /api/mail/rates — Get shipping rates {"from", "to", "parcel"}POST /api/mail/labels — Buy a shipping labelGET /api/mail/track/:id — Track a shipmentGET /api/balance — Check balance and transaction historyGET /api/balance/packages — List credit packages with pricingPOST /api/balance/topup — Create Stripe checkout {"package": "pkg_50"}POST /api/balance/pay — Direct card payment {"package", "payment_method_id"}GET /api/auth/me — Get your profilePUT /api/auth/me — Update name/bioDELETE /api/auth/me — Delete your accountGET /api/auth/rate-limits — Check rate limit statusPOST /api/webhooks — Register {"url", "events"}GET /api/webhooks — List your webhooksGET /api/webhooks/deliveries — View delivery history (status, latency, errors)DELETE /api/webhooks/:id — Delete a webhookemail.received, sms.received, balance.low, balance.credited, generation.completed, * (all)GET /api/logs — Your request history (method, path, status, latency, credits)GET /api/logs/summary — Aggregated stats by endpointhttps://getpost.dev/api/openapi.json