2M+Trips Completed
50k+Active Drivers
120Cities Covered
500+Corporate Clients
Unmatched Fleet
Choose from a wide variety of premium vehicles, meticulously maintained to ensure your comfort and safety.
For Developers
Integrate GinyGo API into your apps.
Empower your own business with our robust mobility backend. Dispatch rides, track drivers in real-time, and automate corporate billing with a few lines of code.
- ✓RESTful endpoints for ride booking & dispatch
- ✓Webhooks for real-time status updates
- ✓Drop-in UI components for Checkout
- ✓Enterprise-grade SLAs & Sandboxing
create-booking.ts
import { GinyGo } from '@ginygo/node';
const client = new GinyGo(process.env.GINY_API_KEY);
const ride = await client.bookings.create({
pickup: { lat: 40.7128, lng: -74.0060 },
dropoff: { lat: 40.6413, lng: -73.7781 },
vehicleType: 'LUXURY_BLACK',
corporateAccountId: 'corp_8A9B2'
});
console.log(`Driver arriving in $${ride.eta} mins`);

