const rates = await pr.rates.get({
from_address: {
name: 'Warehouse',
street1: '417 Montgomery St',
city: 'San Francisco',
state: 'CA',
zip: '94105',
country: 'US'
},
to_address: {
name: 'Customer',
street1: '123 Main St',
city: 'Austin',
state: 'TX',
zip: '78701',
country: 'US'
},
parcel: {
weight_oz: 16,
length: 9,
width: 6,
height: 2
}
});
// Sorted cheapest first
console.log(rates.rates[0]);
// {
// carrier: 'USPS',
// service: 'Ground Advantage',
// rate_cents: 542,
// carrier_eta: '2026-05-20',
// carbon_grams: 142
// }