curl --request POST \
--url https://gateway-dev.shipbob.dev/2025-07/order:estimate \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'shipbob_channel_id: <shipbob_channel_id>' \
--data '
{
"address": {
"address1": "100 Nowhere Blvd",
"address2": "Suite 100",
"city": "Gotham City",
"company_name": "Wayne Enterprises",
"country": "US",
"state": "NJ",
"zip_code": "07093"
},
"products": [
{
"id": 0,
"quantity": 1,
"reference_id": "TShirtBlueM"
}
],
"shipping_methods": [
"string"
]
}
'{
"estimates": [
{
"estimated_currency_code": "string",
"estimated_price": 0.1,
"fulfillment_center": {
"id": 0,
"name": "Cicero (IL)"
},
"shipping_method": "string",
"total_weight_oz": 0.1
}
]
}This endpoint will provide, where possible, an estimate of pricing and fulfillment center assignment of a potential standard (direct to consumer) order. Keep in mind that there are ways for the merchant to change FC assignment or product configuration after order creation that could invalidate this estimate. Estimates cannot be returned for items that are unknown, out of stock, or too large for fulfillment using standard box sizes. Additional services such as high-pick fees, shipping insurance, auto-splitting or auto-adding items to orders, and signature required are not included in this estimate.
curl --request POST \
--url https://gateway-dev.shipbob.dev/2025-07/order:estimate \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'shipbob_channel_id: <shipbob_channel_id>' \
--data '
{
"address": {
"address1": "100 Nowhere Blvd",
"address2": "Suite 100",
"city": "Gotham City",
"company_name": "Wayne Enterprises",
"country": "US",
"state": "NJ",
"zip_code": "07093"
},
"products": [
{
"id": 0,
"quantity": 1,
"reference_id": "TShirtBlueM"
}
],
"shipping_methods": [
"string"
]
}
'{
"estimates": [
{
"estimated_currency_code": "string",
"estimated_price": 0.1,
"fulfillment_center": {
"id": 0,
"name": "Cicero (IL)"
},
"shipping_method": "string",
"total_weight_oz": 0.1
}
]
}Authentication using Personal Access Token (PAT) token
Channel Id for Operation
Show child attributes
Products to be included in the order. Each product must include one of reference_id or id
Show child attributes
Array of strings specifying shipping methods for which to fetch estimates.
If this field is omitted we will return estimates for all shipping methods defined in ShipBob
Success
Array of estimates for each shipping method
Show child attributes