List shipping options and prices for a given shipment.
POST
/order/shipping
order
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/2/order/shipping' \
--header 'Content-Type: application/json' \
--data-raw '{
"models": [
{
"material_id": 0,
"model_id": 0,
"options": {
"orientation": true
},
"quantity": 0,
"units": "string"
}
],
"shipping_address": {
"city": "string",
"country": "string",
"email": "string",
"name": "string",
"state": "string",
"street1": "string",
"street2": "string",
"zip": "string"
}
}'
Response Response Example
{
"rates": [
{
"additional_item_charge": 0,
"delivery_date": "2023-08-16T02:30:55.843Z",
"display_name": "FedEx - Priority Overnight",
"guaranteed": true,
"price": 25.69,
"service": "PRIORITY_OVERNIGHT",
"ship_date": "2023-08-16T02:30:55.843Z",
"value": "rate_0646e5f9f3814c4086864914fbe08535"
}
]
}
Request
Body Params application/json
Responses
Modified at 2023-08-16 02:30:56