# Retrieve Shipment Rates When you [rate multiple shipments](/rate-shopping#rate-multiple-shipments), ShipStation returns a list of rates with information about each one, such as the costs and the estimated delivery date. Each of these rates is specific to the shipment information provided in the rate request. ShipStation stores this shipment information as a `shipment` object and each rate is associated with a `shipment_id`. You can then retrieve the rates later using this `shipment_id`. ## Example Request & Response **GET /v2/shipments/:shipment_id/rates** This example retrieves the rates for "shipment_id": `se-2102034` (see line 3 of the example response). ```http GET /v2/shipments/se-2102034/rates HTTP/1.1 Host: api.shipstation.com API-Key: __YOUR_API_KEY_HERE__ ``` **Example Response** The response includes a list of rates for "shipment_id": `se-2102034`. Each rate includes a `rate_id` that you can use to [create a label](/create-labels). Due to the length of the response, we have truncated this example to only show a single rate. ```json [ { "shipment_id": "se-2102034", "status": "completed", "created_at": "2024-07-25T15:24:46.657Z", "rates": [ { "rate_id": "se-11744390", "rate_type": "shipment", "carrier_id": "se-123890", "shipping_amount": { "currency": "usd", "amount": 9.37 }, "insurance_amount": { "currency": "usd", "amount": 0.00 }, "confirmation_amount": { "currency": "usd", "amount": 0.00 }, "other_amount": { "currency": "usd", "amount": 0.00 }, "rate_details": [ { "rate_detail_type": "shipping", "carrier_description": null, "carrier_billing_code": "Base Rate", "carrier_memo": null, "amount": { "currency": "usd", "amount": 9.37 }, "billing_source": "Carrier" } ], "delivery_days": 3, "guaranteed_service": false, "delivery_date": "2024-07-25T05:00:00.000Z", "carrier_delivery_days": "Friday by 11:00 PM", "ship_date": "2024-07-25T05:00:00.000ZPlus3$", "negotiated_rate": false, "service_type": "UPSĀ® Ground", "service_code": "ups_ground", "trackable": true, "validation_status": "valid", "warning_messages": [], "error_messages": [], "carrier_code": "ups", "carrier_nickname": "UPS-28A1R9", "carrier_friendly_name": "UPS" } ], "invalid_rates": [], "errors": null } ] ```