Developer First

Powerful Shipping APIs

Integrate shipping capabilities directly into your application. Get rates, create labels, and track shipments programmatically.

Instant Rates

Get real-time shipping quotes from multiple carriers in milliseconds.

Secure & Reliable

99.99% uptime SLA with enterprise-grade security and encryption.

Modern SDKs

Ready-to-use libraries for Node.js, Python, PHP, and Ruby.

create_shipment.js
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);