Shipment Management
Shipment Management

POST /public/quote

Returns all available shipping-rate quotes for a given origin and destination, without creating an order. Send a POST to https://app.ship.com/public/quote with Content-Type: application/json and your Authorization: Bearer <token> header.

**Request:**

POST /public/quoteContent-Type: application/jsonAuthorization: Bearer <token>

Field Type Required Default
fromZip string Yes
toZip string Yes
shipDate DateTime No now (UTC)
signature boolean No false
country string No "US"
weight number No 0
length number No 0
width number No 0
height number No 0
upsPackageType string No null
packageType string No null

Successful Response

1{
2  "success": true,
3  "result": {
4    "orderID": 0,
5    "error": null,
6    "prices": [
7      {
8        "id": "string",
9        "rate": 8.45,
10        "retailRate": 10.20,
11        "serviceLevel": "string",
12        "deliveryDate": "date",
13        "isCubic": false,
14        "method": "string"
15      }
16    ],
17    "weight": 0,
18    "width": 0,
19    "height": 0,
20    "length": 0,
21    "insuranceCost": 0,
22    "insuranceAmount": 0
23  }
24}