Developer API

NTaxy Ride API

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.

Real-time Bidding

Live driver bidding system with instant fare updates

Enterprise Security

OAuth 2.0, API key rotation, and IP whitelisting

Pan-India Coverage

Access to 500+ cities with verified drivers

Live GPS Tracking

Real-time driver location with TomTom Maps integration

Quick Start Guide

Get started with our API in minutes. Here's how to book your first ride.

Create Ride Booking
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"
  }'
Live Bidding WebSocket
// 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
  });
};

RESTful API

Standard REST endpoints with JSON request/response

WebSocket Bidding

Real-time driver bids via WebSocket connection

SDKs

Official libraries for Node.js, Python, React Native

Available Endpoints

Complete API coverage for ride-hailing integration

Ride Booking
POST/v1/ntaxy/rides
GET/v1/ntaxy/rides/{id}
GET/v1/ntaxy/rides
DELETE/v1/ntaxy/rides/{id}/cancel
Live Bidding
POST/v1/ntaxy/bids/request
GET/v1/ntaxy/bids/{ride_id}
POST/v1/ntaxy/bids/{id}/accept
WS/v1/ntaxy/bids/ws
Live Tracking
GET/v1/ntaxy/track/{ride_id}
GET/v1/ntaxy/driver/{id}/location
WS/v1/ntaxy/track/ws
GET/v1/ntaxy/eta/{ride_id}
Fare & Pricing
GET/v1/ntaxy/fare/estimate
GET/v1/ntaxy/vehicle-types
GET/v1/ntaxy/surge
POST/v1/ntaxy/promo/validate
Drivers
GET/v1/ntaxy/drivers/nearby
GET/v1/ntaxy/drivers/{id}
GET/v1/ntaxy/drivers/{id}/rating
POST/v1/ntaxy/rides/{id}/rate
Webhooks & Events
POST/v1/ntaxy/webhooks
GET/v1/ntaxy/webhooks
DELETE/v1/ntaxy/webhooks/{id}
GET/v1/ntaxy/events

Vehicle Types Available

All vehicle categories accessible via API

🛺

Auto

auto

₹25/km

🚗

Mini Cab

mini

₹35/km

🚙

Sedan

sedan

₹45/km

🚐

SUV

suv

₹65/km

Prime Sedan

prime

₹55/km

API Pricing

Choose the plan that fits your ride volume

Starter
Perfect for testing and small apps
Free
  • 100 API calls/month
  • Basic ride booking
  • Email support
  • Single API key
  • Standard rate limits
Get Started
Most Popular
Growth
For ride-hailing integrations
₹9,999/month
  • 25,000 API calls/month
  • Live bidding & tracking
  • Priority support
  • Multiple API keys
  • Higher rate limits
  • Bulk booking API
  • Webhook notifications
  • Driver allocation API
Get Started
Enterprise
For high-volume platforms
Custom
  • Unlimited API calls
  • Dedicated support manager
  • SLA guarantee
  • IP whitelisting
  • Custom integrations
  • White-label solution
  • Volume discounts
  • Fleet management API
Get Started

Register for API Access

Fill out the form below to get your API credentials. We'll review your application and send you the API key within 24 hours.

Need Help?

Our developer support team is here to help you integrate.

Documentation

Complete API reference with examples

Developer Support

Email us at api@nonstop.asia

Contact Support

Sandbox Environment

Test your integration risk-free