List shipping rates available for the cart destination
GET
/store/v1/carts/{cartId}/shipping-rates
const url = 'https://your-store.example.com/store/v1/carts/example/shipping-rates';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://your-store.example.com/store/v1/carts/example/shipping-ratesParameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” cartId
required
string