Integrate India's first bidding-based ride platform into your app. Book rides, track drivers live, and access real-time fare bidding with our RESTful API.
Live driver bidding system with instant fare updates
OAuth 2.0, API key rotation, and IP whitelisting
Access to 500+ cities with verified drivers
Real-time driver location with TomTom Maps integration
Get started with our API in minutes. Here's how to book your first ride.
curl -X POST "https://api.nonstop.asia/v1/ntaxy/rides" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"pickup": {
"lat": 12.9716,
"lng": 77.5946,
"address": "MG Road, Bangalore"
},
"drop": {
"lat": 12.9352,
"lng": 77.6245,
"address": "Koramangala, Bangalore"
},
"vehicle_type": "sedan",
"passenger": {
"name": "John Doe",
"phone": "9876543210"
},
"booking_type": "instant"
}'// Subscribe to live driver bids
const ws = new WebSocket('wss://api.nonstop.asia/v1/ntaxy/bids/ws');
ws.onopen = () => {
ws.send(JSON.stringify({
action: 'subscribe',
booking_id: 'RIDE_123456',
api_key: 'YOUR_API_KEY'
}));
};
ws.onmessage = (event) => {
const bid = JSON.parse(event.data);
console.log('New Bid:', {
driver_id: bid.driver_id,
driver_name: bid.driver_name,
vehicle: bid.vehicle_number,
fare: bid.offered_fare,
eta: bid.eta_minutes
});
};Standard REST endpoints with JSON request/response
Real-time driver bids via WebSocket connection
Official libraries for Node.js, Python, React Native
Complete API coverage for ride-hailing integration
/v1/ntaxy/rides/v1/ntaxy/rides/{id}/v1/ntaxy/rides/v1/ntaxy/rides/{id}/cancel/v1/ntaxy/bids/request/v1/ntaxy/bids/{ride_id}/v1/ntaxy/bids/{id}/accept/v1/ntaxy/bids/ws/v1/ntaxy/track/{ride_id}/v1/ntaxy/driver/{id}/location/v1/ntaxy/track/ws/v1/ntaxy/eta/{ride_id}/v1/ntaxy/fare/estimate/v1/ntaxy/vehicle-types/v1/ntaxy/surge/v1/ntaxy/promo/validate/v1/ntaxy/drivers/nearby/v1/ntaxy/drivers/{id}/v1/ntaxy/drivers/{id}/rating/v1/ntaxy/rides/{id}/rate/v1/ntaxy/webhooks/v1/ntaxy/webhooks/v1/ntaxy/webhooks/{id}/v1/ntaxy/eventsAll vehicle categories accessible via API
auto₹25/km
mini₹35/km
sedan₹45/km
suv₹65/km
prime₹55/km
Choose the plan that fits your ride volume
Fill out the form below to get your API credentials. We'll review your application and send you the API key within 24 hours.
Our developer support team is here to help you integrate.
Complete API reference with examples
Test your integration risk-free