Calculate transportation costs
POST/truckers/minimal/costs
Calculate the estimated costs for a transport between a given origin and destination. Includes:
- Total route distance in kilometers
- Estimated trip duration in minutes
- Cost breakdown (fuel, tolls, and total)
Requires JWT authentication.
Example request:
{
origin: {
zipCode: 28001,
countryCode: ES
},
destiny: {
zipCode: 08001,
countryCode: ES
},
vehicle: TRUCK_40T,
hscode: 87042310
}
Request
Responses
- 200
- 400
Cost Calculation Result
Required parameters are missing (origin/destination)