← 返回 Skills 市场
dommholland

GetPost - The API Platform for Bots

作者 domm · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
152
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install getpost
功能描述
The API platform for bots. Email, SMS, search, scrape, AI, domains, shipping - one API key.
使用说明 (SKILL.md)

GetPost API — Skills for AI Agents

What is GetPost?

GetPost 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.

Base URL

https://getpost.dev/api

Quick Start

# 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: [email protected]

Authentication

All requests (except signup) require:

Authorization: Bearer gp_live_YOUR_KEY

Credits

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).

Available APIs

Email

  • POST /api/email/send — Send email {"to", "subject", "body"}
  • GET /api/email/inbox — Read received emails
  • POST /api/email/addresses — Register dedicated address
  • Cost: 1 credit per email sent, receiving is free

SMS

  • POST /api/sms/send — Send SMS {"to", "body"} (E.164 format)
  • GET /api/sms/inbox — Read received SMS
  • POST /api/sms/numbers — Provision dedicated number
  • Cost: 5 credits per SMS sent

Search

  • POST /api/search — Web search {"query", "num_results"}
  • Cost: 3 credits per search

Web Scrape

  • POST /api/scrape — Scrape URL {"url", "extract_text", "screenshot"}
  • Cost: 5 credits per scrape

AI / LLM Chat

  • GET /api/ai/models — List all models with pricing
  • POST /api/ai/chat — Chat completion {"model", "messages", "max_tokens"}
  • Models: gpt-5.4, gpt-4.1-nano, claude-opus-4-6, claude-sonnet-4-6, gemini-2.5-flash, grok-4, deepseek-chat, kimi-k2.5, and more
  • Cost: per-token, varies by model (see /api/ai/models)

AI Image/Video Generation

  • POST /api/ai/generate — Generate images or videos {"model", "prompt", "n"}
  • GET /api/ai/jobs — List async generation jobs
  • GET /api/ai/jobs/:id — Check job status (live-checks provider if pending)
  • Image models: gpt-image-1, dall-e-3, midjourney, imagen-4, grok-imagine-image, stable-diffusion-3.5
  • Video models: sora-2, grok-imagine-video, veo-3.1
  • Cost: varies by model (2-100 credits per generation)

Domains

  • 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 domains
  • GET /api/domains/:id — Domain details + live status
  • GET /api/domains/:id/nameservers — Get current nameservers
  • PUT /api/domains/:id/nameservers — Update nameservers
  • GET /api/domains/:id/dns — List DNS records
  • POST /api/domains/:id/dns — Add/upsert DNS record (smart merge for SPF/DMARC)
  • PUT /api/domains/:id/dns/:recordId — Update a DNS record
  • DELETE /api/domains/:id/dns/:recordId — Delete a DNS record
  • POST /api/domains/:id/email — Create email on your domain
  • POST /api/domains/:id/verify-email — Verify email sending config
  • Auto-provisions: Cloudflare DNS, nameservers, SendGrid email, default redirect

Mail / Shipping

  • POST /api/mail/rates — Get shipping rates {"from", "to", "parcel"}
  • POST /api/mail/labels — Buy a shipping label
  • GET /api/mail/track/:id — Track a shipment

Balance & Credits

  • GET /api/balance — Check balance and transaction history
  • GET /api/balance/packages — List credit packages with pricing
  • POST /api/balance/topup — Create Stripe checkout {"package": "pkg_50"}
  • POST /api/balance/pay — Direct card payment {"package", "payment_method_id"}

Account

  • GET /api/auth/me — Get your profile
  • PUT /api/auth/me — Update name/bio
  • DELETE /api/auth/me — Delete your account
  • GET /api/auth/rate-limits — Check rate limit status

Webhooks

  • POST /api/webhooks — Register {"url", "events"}
  • GET /api/webhooks — List your webhooks
  • GET /api/webhooks/deliveries — View delivery history (status, latency, errors)
  • DELETE /api/webhooks/:id — Delete a webhook
  • Events: email.received, sms.received, balance.low, balance.credited, generation.completed, * (all)

Logs

  • GET /api/logs — Your request history (method, path, status, latency, credits)
  • GET /api/logs/summary — Aggregated stats by endpoint

Full OpenAPI Spec

https://getpost.dev/api/openapi.json

Pricing

https://getpost.dev/api/pricing

安全使用建议
This skill documents a powerful, multi-capability API (email/SMS, scraping, AI, domain/DNS changes, webhooks, billing). Before installing: 1) Note the registry metadata does NOT declare the API key it requires — ask the provider how the key will be supplied and stored (prefer user-supplied, scoped, revocable key). 2) Be cautious with webhook registration and DNS/domain provisioning: these features can exfiltrate data or alter your domains — require explicit approval before registering external webhook URLs or changing DNS. 3) Treat billing endpoints carefully: use a separate/test account or card and verify pricing/limits. 4) Verify the service origin (getpost.dev) and review its privacy/security docs; the skill source is unknown with no homepage. 5) If you decide to proceed, limit the agent’s permissions, use minimal-scoped API keys, and monitor logs/credits for unexpected activity.
能力评估
Purpose & Capability
The SKILL.md describes an API platform that matches the skill name/description (email, SMS, search, scrape, AI, domains, shipping). However the skill metadata declares no required credential even though the instructions require an API key (Authorization: Bearer gp_live_YOUR_KEY). This mismatch is unexpected and reduces transparency.
Instruction Scope
Instructions are limited to calling getpost.dev endpoints (signup, email, sms, search, scrape, ai, domains, webhooks, billing). They do not ask the agent to read local files or unrelated system state, but they do allow registering webhooks to arbitrary URLs and provisioning domains/DNS. Webhook registration and DNS changes can be used to exfiltrate data or take control of domains if misused; the SKILL.md gives no guidance or safeguards around that.
Install Mechanism
Instruction-only skill with no install spec and no code files — nothing is written to disk by the skill itself.
Credentials
The documentation requires an API key to authenticate, and actions include billing (Stripe checkout/ direct card payments) and provisioning domains/DNS. Yet the registry metadata declares no required environment variables or primary credential. The missing declaration is an inconsistency and could lead to unclear handling/storage of secrets at runtime.
Persistence & Privilege
always is false and the skill doesn't request persistent system privileges or modify other skills. Autonomous invocation is allowed (default) but not combined with other privileged flags.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install getpost
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /getpost 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release of the getpost skill. - Introduces an API platform for bots and AI agents with a single API key. - Access to email, SMS, web search, web scraping, AI/LLM inference and generation, domain registration, and shipping label creation. - Implements a clear credits-based payment system for all operations. - Provides detailed routes for authentication, balance management, webhooks, logs, and third-party integrations. - Includes free signup, immediate credit allocation, and extensive documentation via OpenAPI and web.
元数据
Slug getpost
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

GetPost - The API Platform for Bots 是什么?

The API platform for bots. Email, SMS, search, scrape, AI, domains, shipping - one API key. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 152 次。

如何安装 GetPost - The API Platform for Bots?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install getpost」即可一键安装,无需额外配置。

GetPost - The API Platform for Bots 是免费的吗?

是的,GetPost - The API Platform for Bots 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

GetPost - The API Platform for Bots 支持哪些平台?

GetPost - The API Platform for Bots 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 GetPost - The API Platform for Bots?

由 domm(@dommholland)开发并维护,当前版本 v1.0.0。

💬 留言讨论