← Back to Skills Marketplace
dommholland

GetPost Mail and Shipping API

by domm · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ pending
221
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install getpost-mail
Description
Buy shipping labels, get rates, and track parcels via API.
README (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

Usage Guidance
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.
Capability Assessment
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.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install getpost-mail
  3. After installation, invoke the skill by name or use /getpost-mail
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
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.
Metadata
Slug getpost-mail
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is GetPost Mail and Shipping API?

Buy shipping labels, get rates, and track parcels via API. It is an AI Agent Skill for Claude Code / OpenClaw, with 221 downloads so far.

How do I install GetPost Mail and Shipping API?

Run "/install getpost-mail" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is GetPost Mail and Shipping API free?

Yes, GetPost Mail and Shipping API is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does GetPost Mail and Shipping API support?

GetPost Mail and Shipping API is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created GetPost Mail and Shipping API?

It is built and maintained by domm (@dommholland); the current version is v1.0.0.

💬 Comments