To get rate rate please provide the following details
Request
Body Params application/json
{
"recipient": {
"addressLine1": "725 CROSSWAY RD",
"postalCode": "94010",
"city": "BURLINGAME",
"stateCode": "CA",
"countryCode": "US"
},
"parcels": [
{
"length": 19,
"width": 13,
"height": 2,
"dimensionUnit": "IN",
"weight":20,
"weightUnit": "LB",
"count": 1
}
]
}
Request samples
curl --location --request POST 'https://app.shipnitro.com/api/v2/rates' \
--header 'Authorization: Basic {{apiKey}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"recipient": {
"addressLine1": "725 CROSSWAY RD",
"postalCode": "94010",
"city": "BURLINGAME",
"stateCode": "CA",
"countryCode": "US"
},
"parcels": [
{
"length": 19,
"width": 13,
"height": 2,
"dimensionUnit": "IN",
"weight":20,
"weightUnit": "LB",
"count": 1
}
]
}'
Responses
application/json {
"rates": [
{
"service": "fedex_ground",
"serviceCode": "FEDEX_GROUND",
"currency": "USD",
"totalCharge": 14.9,
"meta": {
"serviceName": "FedEx Ground®",
"rateProvider": "fedex"
}
}
]
}
Modified at 2025-07-22 16:38:01