← 返回 Skills 市场
dommholland

GetPost Mail and Shipping API

作者 domm · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ pending
221
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install getpost-mail
功能描述
Buy shipping labels, get rates, and track parcels via API.
使用说明 (SKILL.md)

GetPost Mail & Shipping API

Buy shipping labels, get rates, and track parcels via API. Powered by EasyPost — access USPS, UPS, FedEx, and more.

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

Get Shipping Rates

curl -X POST https://getpost.dev/api/mail/rates \
  -H "Authorization: Bearer gp_live_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "from": {"name": "Sender", "street1": "123 Main St", "city": "SF", "state": "CA", "zip": "94105", "country": "US"},
    "to": {"name": "Recipient", "street1": "456 Oak Ave", "city": "LA", "state": "CA", "zip": "90001", "country": "US"},
    "parcel": {"length": 10, "width": 8, "height": 4, "weight": 16}
  }'

Buy a Label

curl -X POST https://getpost.dev/api/mail/labels \
  -H "Authorization: Bearer gp_live_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"rate_id": "rate_xxx", "shipment_id": "shp_xxx"}'

Track Shipment

curl https://getpost.dev/api/mail/track/{tracking_id} \
  -H "Authorization: Bearer gp_live_YOUR_KEY"

Full Docs

https://getpost.dev/docs/api-reference#mail

安全使用建议
This skill is instruction-only and coherent with its shipping purpose, but treat the API key as a secret: verify getpost.dev is the official service you intend to use (confirm the 'powered by EasyPost' claim if relevant), use test keys when experimenting, and be aware that buying labels will incur charges. If you plan to allow autonomous agent actions, consider restricting or monitoring label-purchase actions to prevent accidental purchases.
能力评估
Purpose & Capability
Name/description match the instructions: all examples call getpost.dev endpoints to sign up, get rates, buy labels, and track shipments. No unrelated services, binaries, or credentials are requested.
Instruction Scope
SKILL.md only instructs the agent to call getpost.dev API endpoints via curl and to store an API key from signup. It does not ask the agent to read files, other environment variables, or system state outside the skill's purpose.
Install Mechanism
No install spec and no code files — instruction-only skill with minimal surface area. Nothing is downloaded or written to disk by an install step.
Credentials
The skill declares no required environment variables or credentials. The bearer API key shown in examples (gp_live_...) is appropriate and proportional for calling the described API.
Persistence & Privilege
Skill is not always-on and does not request persistent system changes or modify other skills. Autonomous invocation is allowed (platform default) but not combined with other concerning privileges here.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install getpost-mail
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /getpost-mail 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
- Initial release of getpost-mail skill. - Enables buying shipping labels, retrieving shipping rates, and tracking parcels via API. - Supports major carriers including USPS, UPS, and FedEx (powered by EasyPost). - Simple signup and API authentication process. - Refer to https://getpost.dev/docs/api-reference#mail for full documentation.
元数据
Slug getpost-mail
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

GetPost Mail and Shipping API 是什么?

Buy shipping labels, get rates, and track parcels via API. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 221 次。

如何安装 GetPost Mail and Shipping API?

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

GetPost Mail and Shipping API 是免费的吗?

是的,GetPost Mail and Shipping API 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

GetPost Mail and Shipping API 支持哪些平台?

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

谁开发了 GetPost Mail and Shipping API?

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

💬 留言讨论