PostGrid Works For You
Unified Offline Capabilities
Send one or thousands of pieces on-demand and at scale all from Print & Mail API.
Address Verification
Ensure deliverability with our USPS-certified address verification API.
Tracking and Analytics
Access analytics on all orders and conversions.
Easy Integrations
Ensure seamless integration to your stack with zero-code integration with Zapier. Detailed documents and dev support available if required.
Scalable REST API
- Test and Live Keys – We isolate the test and live environments so you can easily test your API calls.
- Fully Documented – Every endpoint is fully documented using OpenAPI, so you can access it from your favorite tools and languages.
- Built to Scale – Our Print and Mail API infrastructure can handle millions of fully personalized orders every day.
Address Verification
- Address Verification – All of your mailings will automatically have their addresses validated/corrected following USPS, Canada Post, Royal Mail & Australia Post standards.
- Address Parsing – Our freeform address parsing capabilities will allow you to make API calls with unformatted addresses.
- Address Autocomplete – Integrate our Address Autocomplete API to make sure addresses are correct at the point of entry.
Detailed Analytics
- Detailed Activity Log – View logs of all sending activity, including the status of every existing and past order.
- Database Search & Export – Search for and download print-ready renderings of all mailings at any time.
- Granular Metadata – Attach application-specific metadata to any API resource to improve visibility and simplify integration.
Native & No-Code Integrations
- Zap-ready – PostGrid’s Zapier integration enables you to connect our sending capabilities with over 1600 apps.
- Dedicated dev support – For seamless integration and setup.
- Native Integration – Use our native Salesforce, HubSpot, Braze, ActiveCampaign, Stripe, Klaviyo, and many more integrations.
API Dashboard
- Enhanced Visibility – Use our dashboard to track your API usage, manage templates, contacts, and other API resources.
- Detailed Analytics – View analytics on the status of all of your mailings with complete searchability of all current and historical orders.
- User Management – Invite other users in your organization to PostGrid and enable them to integrate our direct mail API and make use of the dashboard.
PDF Wizard & Workflows
- PDF Wizard OCR – Extract Address Fields from the document and use them as contact address details.
- PDF Workflows – Resize, rotate, and extract details from PDF using our PDF workflows.
- PDF Rendering – Scale PDF rendering from HTML or our template editor.
Built-in HTML Editor
- Custom Branding: Customize your letters, postcards, bills, and self-mailers with unique fonts, colors, layouts, elements, and pictures.
- Sideload Images: Upload your high-quality images directly from your computer to make the mailpieces stand out.
- Embed Trackers: Add QR codes or Personalized URLs (PURLs) to track individual mailpieces and direct recipients to online channels.
Advanced Tracking
- Carrier Tracking – Get the exact status of an order directly from the carrier, displayed automatically on your order details page every hour.
- QR Code Tracking – Use our built-in QR Code tracking to track every single mailpiece using uniquely generated QR Codes.
- pURL Tracking – Provide personalized URL content using our built-in pURL Tracking.
PostGrid has you covered from all sides
Regulatory Compliance
Data is handled according to all legal frameworks and requirements; our partners are HIPAA, PHIPA, PIPEDA, GDPR & SOC-2 certified.
Data Security and Secure Hosting
Your data is handled most securely and confidentially, and we host on Amazon Web Services for quick, easy-to-use, and safe hosting.
Scalable Solutions
Scale your communication channel with ease with our scalable REST API and integration capabilities.
Get Started with PostGrid’s API in Seconds
Easily send mails, manage templates and verify addresses globally using API
- Send personalized letters with automatic address verification
- Send customized postcards with ease
- Send US & Canadian checks along with letter attachments
- Monitor and track your mailings in real time
- Verify and standardize addresses from 245+ countries
- Autocomplete and verify addresses as users type
cURL
curl https://api.postgrid.com/print-mail/v1/letters \
-u API_KEY: \
-d to[firstName]="Kevin" \
-d to[lastName]="Villena" \
-d to[addressLine1]="145 Mulberry St, Apt PH D, New York, NY 10013" \
-d to[countryCode]="US" \
-d from[companyName]="PostGrid" \
-d from[addressLine1]="90 Canal St, Suite 400, Boston, MA" \
-d from[countryCode]="US" \
-d color=true \
-d express=true \
-d template="template_4hXPyVphgFPynPyHFTJaKo" \
-d mergeVariables[verification_code]=4242
cURL
curl https://api.postgrid.com/print-mail/v1/postcards \
-u API_KEY: \
-d to[firstName]="Kevin" \
-d to[lastName]="Villena" \
-d to[addressLine1]="145 Mulberry St, Apt PH D, New York, NY 10013" \
-d to[countryCode]="US" \
-d size="6x4" \
-d frontTemplate="template_6a3k5LqumLD7cpdD9VkQUd" \
-d backTemplate="template_oa8Au5h4DqFr1mRDLaKhJz" \
-d mailingClass="standard_class" \
-d mergeVariables[qr_code_url]="https://postgrid.com?source=postcard"
cURL
curl https://api.postgrid.com/print-mail/v1/cheques \
-u API_KEY: \
-d to[firstName]="Kevin" \
-d to[lastName]="Villena" \
-d to[addressLine1]="145 Mulberry St, Apt PH D, New York, NY 10013" \
-d to[countryCode]="US" \
-d from[companyName]="PostGrid" \
-d from[addressLine1]="90 Canal St, Suite 400, Boston, MA" \
-d from[countryCode]="US" \
-d bankAccount="bank_k9zDtHjZmBe9ruVC4F8PZN" \
-d amount=4242 \
-d message="Here is the payment for the attached invoice." \
-d letterPDF="https://pg-prod-bucket-1.s3.amazonaws.com/assets/sample-invoice.pdf"
cURL
# List all letters destined for New York that have left their final USPS facility.
curl https://api.postgrid.com/print-mail/v1/letters?search= "NY out_for_delivery" \
-u API_KEY:
# Retrieve a check and its corresponding bank account
curl https://api.postgrid.com/print-mail/v1/cheques/cheque_dUtnqaaFTFyz9Yo56PuEfn?expand[]="bankAccount" \
-u API_KEY:
cURL
# Automatically parse and correct a freeform US or Canadian address
curl https://api.postgrid.com/v1/addver/verifications \
-u API_KEY: \
-d address="14-20 bay st, floor 11, toronto, on, canada"
# Use our international API to verify addresses around the world
curl https://api.postgrid.com/v1/intl_addver/verifications \
-u API_KEY: \
-d address[line1]="33 Nine Elms Lane" \
-d address[city]="London" \
-d address[postalOrZip]="SW11 7US" \
-d address[country]="United Kingdom"
cURL
# List US & Canada previews for partial address input
curl https://api.postgrid.com/v1/addver/completions?partialStreet=182+Se \
-u API_KEY:
# List addresses from around the world, sorted by distance to user IP
curl https://api.postgrid.com/v1/intl_addver/completions?partialStreet=15&countriesFilter=UK \
-u API_KEY:
Frequently Asked Questions
How Different Industries Can Use Our Solution?
Our Print & Mail API is suitable for multiple industries, saving time, effort, and money in their offline communication efforts.
Healthcare
Healthcare and related companies must handle high volumes of medical documents, such as bills, medical statements, test reports, prescriptions, appointment reminders, discharge summaries, and other documents, with complete adherence to HIPAA regulations. Our Print & Mail solution helps them automate the entire process of producing and sending these critical communications without compromising Protected Health Information (PHI). They can also run direct mail campaigns to advertise their services and build higher credibility.
Finance
Banks and financial institutions work in a highly regulated industry. They handle physical monthly statements, tax documents, reminders, check reorders, audit notices, and regulatory disclosures. Banks, insurers, credit firms, and other financial companies can use our solution as a part of their ongoing marketing and communications strategy. It adheres to critical regulations, such as GDPR and PCI DSS, with end-to-end data encryption to protect sensitive financial data.
Retail & Ecommerce
This industry requires multiple channels to promote its products and stores. Direct mail is hugely beneficial in reducing cart abandonment, running promotional campaigns, and building a loyal customer base. Our solution provides native integrations for e-commerce platforms and marketing automation tools to bridge the gap between online and offline marketing strategies. They can send event-triggered mailpieces using the automation capabilities of our API.
Nonprofits
Nonprofits and charitable organizations need donors and volunteers to achieve their mission and goals. Direct mail is still a reliable method to reach people in a local neighborhood to gather support and build credibility. Automated direct mail and USPS help these organizations receive additional discounts by qualifying for non-profit mail. Everything, from printing to sorting to mailing, is automated, so they don't need to hire a dedicated staff to manage manual work.
Education
Schools and universities also need an offline communication channel to send prospectuses, parent communications, event invitations, degrees, certifications, and other important information. They don't have enough resources to design, print, package, and mail these mailers manually. Our Print & Mail API can free up their schedules and save overhead costs, helping them to focus on other critical operations.
Public Relations
PR firms and marketing agencies need multiple channels to maintain their clients' brand reputations. Direct mail automation is the only way to give them an advantage over competitors in the offline communication space. These firms can use our built-in tools to focus on content, design, campaign timings, and other factors to receive a higher number of responses. We help them unify their offline communication tasks via a single dashboard.
What collateral formats are supported by PostGrid’s Print & Mail API?
Clients use our solution to send marketing, transactional, and compliance communication mailings with automation.
Letters
We provide letter envelopes in various sizes depending on your specific requirements. This format is highly personal and ideal for communication and marketing purposes. However, the postal rates will be slightly higher for bigger sizes. Use our drag-and-drop editor to personalize every aspect of your letters.
Postcards
It is the most cost-effective direct mail format, ideal for marketing and engagement campaigns. We help our clients to send postcards of different sizes, starting from 6 x 4 to 9 x 6 to 11 x 6. It makes your mailpiece design visually appealing and communicates the message in the fewest words.
Bills and Statements
You can use our letter templates and native integrations to generate bills, invoices, and statements with real-time data synchronization. Variable Data Printing (VDP) helps you dynamically input financial data into your collaterals with precision.
Checks
Our Print & Mail API's network allows businesses to send different types of checks safely, accurately, and on time. It uses MICR toner on checks for added security and provides tracking mechanisms to ensure deliverability. You can also add your branding elements to spread awareness and make your checks more attractive.
Bi-fold Self Mailers
You can use this option to send flyers with dimensions of 8.5 x 11 inches. It's the perfect option for businesses to inform their audiences about discounts, products, offers, or other important announcements. Being bi-folded helps you attract people with a unique flyer design with branded graphics and colors.
How Does the Print & Mail Solution Work?
Generating and sending mailpieces with PostGrid is quick and straightforward, even for non-tech-savvy professionals.
Create the Mailpiece
Sign in to your PostGrid account and create a template using the built-in HTML editor. You can also sideload your mailer design to our dashboard.
Press the Send Button
Create or import your contact list, select a mailing service, and schedule or send your mail items immediately. We manage everything from printing to sending the mailings to the postal service with a 2-business-day SLA.
Monitor Campaign
Use trackers and reporting tools to track deliverability and gather insights from recipient interactions from each mailer. Integrate mailers with QR codes and PURLs for additional visibility.
Request a demo to see how the solution works.
How have businesses benefited from PostGrid’s Print & Mail API?
Ennoble Care
Explore the smoothness of tailored solutions for offline communication in healthcare billing via direct mail automation.
Message Deck
Learn how the firm improved its client outreach with PostGrid's bulk upload feature within the Print & Mail API.
PlateIQ
Learn how the automated accounts payable solutions optimized their check distribution process for superior efficiency.
All teams run on PostGrid
Enhance your team's performance with a unified API. Our solution is designed for on-demand or scalable needs. Easily improve your workflow with seamless integrations and automate your offline process.
Integrates with Your Favorite Tech Stack & Tools
Easily Improve your workflow and automate print & mail through seamless integration capabilities.
Ready to Get Started?
Start transforming and automating your offline communications with PostGrid






























