Build with Tranzera
Integrate world-class shipping into your platform with our RESTful API. Create shipments, calculate rates, and track packages — all programmatically.
Quick Start
Create a shipment with a single API call. Replace trz_live_xxxx with your API key.
curl -X POST https://api.tranzeralogistics.com/v1/shipments \
-H "Authorization: Bearer trz_live_xxxx" \
-H "Content-Type: application/json" \
-d '{
"from": { "postal_code": "75201", "country": "US" },
"to": { "postal_code": "10012", "country": "US" },
"package": { "weight": 2.4, "unit": "kg" },
"service": "express"
}'API Features
Shipment Creation
Create shipments, generate labels, and book pickups programmatically.
Real-Time Tracking
Get live tracking updates via API or webhooks for all your shipments.
Rate Calculation
Calculate shipping rates for any origin-destination pair in real-time.
Webhook Events
Subscribe to shipment events: picked_up, in_transit, delivered, exception.
Official SDKs
Use our official SDKs for your favorite language. Same API, less boilerplate.
import { Tranzera } from '@tranzera/sdk';
const client = new Tranzera('trz_live_xxxx');
const shipment = await client.shipments.create({
from: { postalCode: '75201', country: 'US' },
to: { postalCode: '10012', country: 'US' },
package: { weight: 2.4, unit: 'kg' },
service: 'express'
});
console.log(shipment.trackingNumber);Integrations
Shopify
One-click install for Shopify stores. Sync orders and print labels.
WooCommerce
Native WooCommerce plugin for WordPress sites.
Magento
Enterprise Magento 2 extension with full API support.
BigCommerce
Seamless BigCommerce integration for multi-channel sellers.
Zapier
Connect Tranzera to 5,000+ apps with pre-built Zapier actions.
Try it now
Explore our API with mock requests. Select an endpoint and see the response format.
{
"id": "shp_abc123",
"tracking_number": "TRZ-20260315-ABC123",
"label_url": "https://labels.tranzera.com/...",
"status": "created",
"carrier": "tranzera_express"
}Ready to integrate?
Get your API keys and start building in minutes. Full documentation, SDKs, and support included.