Shipments
This section describes the shipment functions for the Shipitor API.
User actions
Get Shipments
Get all shipments
GET
https://api.shipitor.com/shipments/usa
View all your shipments in the USA.
Headers
x-api-key*
string
API Key
Create Shipment
To create a shipment, you must have the senders, recipient, and package information ready.
Notices:
Length (in inches), must be under 30 inches.
Width (in inches), must be under 40 inches.
Height (in inches), must be under 32 inches.
Weight (in pounds), must be under 120 lbs.
For Saturday delivery, the shipment cannot be UPS Next Day Early or UPS Next Day Early Signature
Create a shipment
POST
api.shipitor.com/shipment/usa/create
Create a shipment, requires shipment and package information.
Headers
x-api-key*
string
API Key
Request Body
speed*
String
Shipping speed and type.
sender*
Object
Sender or return information
address2
String
Secondary Address (Apartment, Room, Floor, Box, Suite number)
state*
String
State of Address (USA only)
zipcode*
String
Sender's zipcode (five digits)
address*
String
Sender's Primary Address
company
String
Company of sender (either company or name is required)
name
String
Name of sender (either company or name is required)
phone*
String
10 digit phone number (no spaces or dashes)
recipient
Object
Recipient information
name
String
Name of recipient (either company or name is required)
company
String
Company of recipient (either company or name is required)
address*
String
Recipient's Primary Address
address2
String
Secondary Address (Apartment, Room, Floor, Box, Suite number)
city*
String
Recipient's City
state*
String
State of Address (USA only)
zipcode*
String
Recipient's zipcode (five digits)
phone*
String
10 digit phone number (no spaces or dashes)
city*
String
Sender's City
package*
Object
Package Information
length*
String
Length (in inches), must be under 30 inches.
width*
String
Width (in inches), must be under 40 inches.
height*
String
Height (in inches), must be under 32 inches.
weight*
String
Weight (in pounds), must be under 120 lbs.
description*
String
Description of item or order information
references*
String
Leave as is [], or contact for more information.
saturday_delivery*
Boolean
True or False (allow Saturday delievery at the address).
Your shipment will be created and the tracking number provided, as well as a link to download/view your label in PDF format. You can see your shipments with the /shipments/usa API endpoint as long as you provide your API key.
Last updated