Instant Rates
Get real-time shipping quotes from multiple carriers in milliseconds.
Integrate shipping capabilities directly into your application. Get rates, create labels, and track shipments programmatically.
Get real-time shipping quotes from multiple carriers in milliseconds.
99.99% uptime SLA with enterprise-grade security and encryption.
Ready-to-use libraries for Node.js, Python, PHP, and Ruby.
const annship = require('annship-sdk')('YOUR_API_KEY');
const shipment = await annship.shipments.create({
from: {
name: 'Warehouse A',
street1: '123 Logistics Way',
city: 'San Francisco',
state: 'CA',
zip: '94105',
country: 'US'
},
to: {
name: 'John Doe',
street1: '456 Residential St',
city: 'New York',
state: 'NY',
zip: '10001',
country: 'US'
},
parcel: {
length: 10,
width: 8,
height: 4,
weight: 2
}
});
console.log(shipment.label_url);