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/api

Authentication

Include your API key in the Authorization header:

Authorization: Bearer YOUR_API_KEY

API Endpoints

Complete list of available API endpoints

MethodEndpointDescriptionAuth
GET/api/reservationsRetrieve all reservationsRequired
POST/api/reservationsCreate a new reservationRequired
GET/api/reservations/{id}Get a specific reservationRequired
PUT/api/reservations/{id}Update a reservationRequired
DELETE/api/reservations/{id}Cancel a reservationRequired
GET/api/vehiclesRetrieve fleet vehiclesRequired
POST/api/vehiclesAdd a new vehicleRequired
GET/api/driversRetrieve driversRequired
POST/api/driversAdd a new driverRequired

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

📦

JavaScript SDK

Official SDK for Node.js and browser environments

Contact for Access →
🐍

Python SDK

Python library for easy integration

Contact for Access →
🔧

API Explorer

Interactive API documentation and testing tool

Contact Us →

Need Help with the API?

Our developer support team is here to help you integrate successfully

Contact Developer Support