PostMail

PostMail

PostMail is a modern RESTful web API that bridges the gap between the snail mail and your app.

Create a mailbox

For just $._ per month you can create a new mailbox that recieves paper mail and converts it into a digital PDF.

curl https://api.postmail.com/mailboxes \
  -d "zipcode=94117"
  -d "city=San Francisco"

Check

Recieving a piece of mail is only __ยข per piece of mail. We’ll tell when a new piece arrives with a Webook or you can search for unopened mail.

curl https://api.postmail.com/mailboxes/12

Read

Ready to look at a piece of mail? Download it as a PDF.

curl https://api.postmail.com/parcel/34.pdf

Organize mail

Move mail to a different mailbox.

curl https://api.postmail.com/mailboxes/56/parcels \
  -X COPY
  -d "parcel=https://api.postmail.com/parcel/34.pdf"

or forward it to an address

curl https://api.postmail.com/mailboxes/56/parcels \
  -X POST
  -d "parcel=https://api.postmail.com/parcel/34.pdf"