Customs
This page shows apis for customs to compute cars quote prices.
Cars Customs Quote
POST https://docs.send.ng/customs/cars
This endpoint allows you to get quote prices for car customs.
Headers
apikey
string
This is the apikey of an existing freight user.
Request Body
cars
array
An array of cars. Includes make, model, value, year, and quantity.
shipmentType
string
This is how you would like your goods to be shipped. Container/RoRo. RoRo by default.
requiredelivery
boolean
true if you need these cars delivered to your destination country. true by default.
destinationcountry
string
goods would be shipped to this country.
destinationstate
string
goods would be shipped to this state.
originstate
string
goods would be shipped from this state.
origincountry
string
goods would be shipped from this country.
{
"status": true,
"message": "Successfully created quote for cars.",
"result": {
"cars": [
{
"make": "Hyundai",
"model": "Compy",
"year": "2004",
"message": "Could not find this car (model)",
"value": 0,
"clearancecost": 0
},
{
"make": "Hyundai",
"model": "Azera",
"year": "2004",
"message": "Success",
"value": 15500,
"quantity": 2,
"clearancecost": 31000
}
],
"expirydate": "Dec 16, 2020",
"deliverycost": 40000,
"totalclearancecost": 81000,
"shippingcost": 10000,
"currency": "NGN",
"quotenumber": "QN-S42QY79U",
"quotestatus": "Pending"
}
}Last updated
Was this helpful?