API for discovering vehicle availability and pricing for the Lucky Rentalsbooking system. The OpenAPI specification is available in YAML and JSON formats.
Try the API in your browser with Swagger UI.
View the Spec in YAML format.
View the Spec in JSON format (recommended for AI agents).
https://www.luckyrentals.co.nz/api/agentCurrently, the API is publicly accessible. No authentication required for read-only operations.
100 requests per 60 seconds per IP address.
Rate limit headers are included in responses: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset
GET https://www.luckyrentals.co.nz/api/agent/depotsGet available pickup/dropoff locations
GET https://www.luckyrentals.co.nz/api/agent/vehicles/availabilityFind available vehicles for specific dates and locations
GET https://www.luckyrentals.co.nz/api/agent/vehicles/{vehicleId}/accessoriesGET https://www.luckyrentals.co.nz/api/agent/vehicles/{vehicleId}/insurance-typesGet available accessories and insurance options
GET https://www.luckyrentals.co.nz/api/agent/quotesGenerate final pricing with selected options
curl -X GET "https://www.luckyrentals.co.nz/api/agent/depots" \ -H "Accept: application/json"
[
{
"id": 1,
"name": "Auckland Airport",
"pickup_times": [...],
"drop_off_times": [...],
"opening_hours_description": "Weekdays 9am-5pm"
}
]Questions or issues? Contact info@luckyrentals.co.nz