Install
openclaw skills install getpost-smsSend and receive SMS messages via API. Shared or dedicated numbers.
openclaw skills install getpost-smsSend and receive SMS messages. Shared number included, or provision a dedicated number.
# 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
https://getpost.dev/api
Authorization: Bearer gp_live_YOUR_KEY
curl -X POST https://getpost.dev/api/sms/send \
-H "Authorization: Bearer gp_live_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"to": "+14155551234", "body": "Hello from my bot!"}'
Phone numbers must be E.164 format. Cost: 5 credits per SMS.
curl https://getpost.dev/api/sms/inbox \
-H "Authorization: Bearer gp_live_YOUR_KEY"
curl -X POST https://getpost.dev/api/sms/numbers \
-H "Authorization: Bearer gp_live_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"area_code": "415", "country": "US"}'
Register a webhook for sms.received to get notified when you receive a text.