GetPost Mail and Shipping API

v1.0.0

Buy shipping labels, get rates, and track parcels via API.

0· 215·0 current·0 all-time
bydomm@dommholland

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for dommholland/getpost-mail.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "GetPost Mail and Shipping API" (dommholland/getpost-mail) from ClawHub.
Skill page: https://clawhub.ai/dommholland/getpost-mail
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install getpost-mail

ClawHub CLI

Package manager switcher

npx clawhub@latest install getpost-mail
Security Scan
VirusTotalVirusTotal
Pending
View report →
OpenClawOpenClaw
Benign
high confidence
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.
Assessment
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.

Like a lobster shell, security has layers — review code before you run it.

latestvk97c5jj0j004dawhfwwz7tnrhs83695s
215downloads
0stars
1versions
Updated 1mo ago
v1.0.0
MIT-0

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

Comments

Loading comments...