Shipping quotes
The Shipping Quotes resource is a critical component for retrieving detailed shipping options, costs, and estimated delivery times. This API endpoint allows users to compare various carriers, select the most cost-effective shipping method, and streamline logistics by efficiently managing shipping decisions based on real-time data. See Using shipping quotes for more information.
Get all available shipping quotes
A three-letter ISO currency code that determines what currency the cost of each shipping quote is converted into.
USD
200 OK
400 Bad Request
401 Unauthorized
403 Forbidden
405 Method Not Allowed
406 Not Acceptable
408 Request Timeout
429 Too Many Requests
500 Internal Server Error
502 Bad Gateway Error
503 Service Unavailable Error
504 Gateway Timeout Error
POST /shipping-quotes HTTP/1.1
Host: api.digitalriver.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 1262
{
"currency": "USD",
"shipTo": {
"address": {
"line1": "10380 Bren Rd W",
"line2": "text",
"city": "Minnetonka",
"postalCode": "55129",
"state": "MN",
"country": "US"
},
"name": "John Smith",
"phone": "952-111-1111",
"email": "[email protected]",
"organization": "Digital River",
"additionalAddressInfo": {
"neighborhood": "Centro",
"division": "営業部",
"phoneticName": "ヤマダ タロ"
}
},
"shipFrom": {
"address": {
"line1": "10380 Bren Rd W",
"line2": "text",
"city": "Minnetonka",
"postalCode": "55129",
"state": "MN",
"country": "US"
},
"additionalAddressInfo": {
"neighborhood": "Centro",
"division": "営業部",
"phoneticName": "ヤマダ タロ"
}
},
"packages": [
{
"items": [
{
"productDetails": {
"id": "100067660336",
"skuGroupId": "wireless-keyboards",
"name": "Keyboard",
"description": "Top rated keyboard",
"itemBreadcrumb": "Sports & Outdoors > Exercise & Fitness > Wearable Technology > Fitness Trackers",
"url": "https://producturl.com",
"countryOfOrigin": "US",
"image": "https://imageurl.com",
"weight": 20.5,
"weightUnit": "oz",
"partNumber": "SWG1224J10L",
"partnerAccountId": "00g6atnynbl2wFsFG357"
},
"logisticsOptions": {
"deliveryOptions": [
"[\"direct_delivery_only\",\"additional_handling\"]"
],
"dangerousGoods": [
"nimh_battery"
]
},
"amount": 9.99,
"quantity": 1
}
],
"weight": 5,
"weightUnit": "oz",
"height": 5,
"width": 5,
"length": 5
}
]
}
{
"currency": "USD",
"quotes": [
{
"id": "123-456-789",
"description": "Standard",
"serviceLevel": "Standard",
"deliveryInformation": {
"businessDaysInTransit": "3 - 5 Business Days",
"estimatedArrival": {
"date": "2018-04-25T20:36:00Z",
"dayOfWeek": "Tuesday"
},
"pickupDate": "2018-04-25T20:36:00Z",
"weekendService": {
"saturdayDelivery": true,
"sundayDelivery": false
},
"supportCutoffTime": "180000"
},
"shippingTerms": "DDP",
"totalAmount": 5.99,
"shipFrom": {
"address": {
"line1": "10380 Bren Rd W",
"line2": "text",
"city": "Minnetonka",
"postalCode": "55129",
"state": "MN",
"country": "US"
},
"additionalAddressInfo": {
"neighborhood": "Centro",
"division": "営業部",
"phoneticName": "ヤマダ タロ"
}
},
"fees": {
"details": [
{
"name": "Fuel Surcharge",
"amount": 3.99
}
],
"amount": 4.99
}
}
],
"liveMode": false
}
Last updated