Getting Started
Account Management
Token Management
Order Management
Shipment Management
Shipment Management
POST /public/shipping-info
Retrieves shipping-rate quotes for an existing order. Send a POST to https://app.ship.com/public/shipping-info with Content-Type: application/json and your Authorization: Bearer <token> header.
**Request:**
POST /public/shipping-infoContent-Type: application/jsonAuthorization: Bearer <token>
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}