API Reference
Integrate LimoDrop with your existing systems using our comprehensive REST API
Quick Start
1
Get Your API Key
Log into your LimoDrop dashboard and generate an API key from the settings page.
2
Make Your First Request
Use the API key to authenticate and start making requests to our endpoints.
3
Explore the Documentation
Use our interactive API explorer to test endpoints and see responses.
Base URL
https://limodrop-v2.onrender.com/apiAuthentication
Include your API key in the Authorization header:
Authorization: Bearer YOUR_API_KEYAPI Endpoints
Complete list of available API endpoints
| Method | Endpoint | Description | Auth |
|---|---|---|---|
| GET | /api/reservations | Retrieve all reservations | Required |
| POST | /api/reservations | Create a new reservation | Required |
| GET | /api/reservations/{id} | Get a specific reservation | Required |
| PUT | /api/reservations/{id} | Update a reservation | Required |
| DELETE | /api/reservations/{id} | Cancel a reservation | Required |
| GET | /api/vehicles | Retrieve fleet vehicles | Required |
| POST | /api/vehicles | Add a new vehicle | Required |
| GET | /api/drivers | Retrieve drivers | Required |
| POST | /api/drivers | Add a new driver | Required |
Code Examples
Get started with these common API operations
Available Examples
Authentication
Create Reservation
Get Reservations
JavaScript Example
// Get API token
const response = await fetch('https://limodrop-v2.onrender.com/api/auth/login', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
email: 'your-email@example.com',
password: 'your-password'
})
});
const { token } = await response.json();SDKs & Tools
Official SDKs and development tools
Need Help with the API?
Our developer support team is here to help you integrate successfully
Contact Developer Support