Get cheaper parking
GET/truckers/map/parkings/cheapest
Returns truck parking sorted by lowest price. Requires JWT token authentication and is subject to rate limiting.
Key features:
- Sorts parking by ascending price (from cheapest to most expensive)
- Includes detailed information for each parking lot (capacity, services, etc.)
- Ideal for optimizing costs on long trips
Usage example:
- Display economical rest stop options
- Plan stops with lower costs
- Compare prices between different areas
Response example:
[
  {
    id: k1l2m3n4-o5p6-7890,
    name: Economy Parking,
    location: {
      lat: 40.417500,
      lng: -3.704500
    },
    capacity: 30,
    price: 8.50,
    rating: 3.8,
    features: [basic security, restrooms]
  }
]
Responses
- 200
- 401
- 429
- 500
Parkings obtained successfully
Unauthorized - Invalid or missing JWT token. Include a valid token in the Authorization header: Bearer {token}
Too many requests - The rate limit has been exceeded.
Wait before making new requests.
Internal Server Error