Connect API v2

Sell car rental,
without the complexity.

Any software vendor, from car rental RMS to global OTAs, can embed Fly & Drive natively. Search multi-hub inventory, book in one call, sync via webhooks.

Product suite

Build the best car rental experience for your customers

Search

Query live drive inventory at airports, train stations and ports. Filter by hub, dates and vehicle category. USD sandbox ready.

Explore search
airport:SFOSep 1 → Sep 8
Compact SUV
$89/day
Camper Van
$142/day

GET /v2/search/drive

Easy-to-use API

Build with zero limitations.

Comprehensive docs, OpenAPI v2, Postman collection with sandbox environment, and REST endpoints designed for car rental software. Not generic travel.

Explore documentation
const res = await fetch(
  'https://api.fly-and-drive.com/v2/search/drive' +
  '?hub=airport:SFO&from=2026-09-01&to=2026-09-08',
  { headers: { Authorization: 'Bearer fd_connect_test_...' } }
);
const { offers } = await res.json();

// Create booking (idempotent)
await fetch('https://api.fly-and-drive.com/v2/bookings', {
  method: 'POST',
  headers: {
    Authorization: 'Bearer fd_connect_test_...',
    'Content-Type': 'application/json',
    'Idempotency-Key': 'booking-001',
  },
  body: JSON.stringify({
    offerId: offers[0].id,
    hub: { type: 'airport', code: 'SFO' },
    pickupDate: '2026-09-01',
    returnDate: '2026-09-08',
    customer: {
      firstName: 'Jane',
      lastName: 'Doe',
      email: 'jane@example.com',
      phone: '+14155550100',
    },
  }),
});
NEW

Multi-hub v2, airports, train stations & ports in one API. Golden Gate sandbox live.

Built for car rental software

Native Fly & Drive, not a bolt-on

5

REST endpoints

Search · Book · Status · Voucher · Widget

3

Sandbox hubs

SFO · SF Embarcadero · SF Port

10/s

Rate limit

Per partner · distributed Redis

24h

Idempotency

Safe booking retries

Ready to integrate on Monday?

Sandbox keys are instant. Import the Postman collection or create your developer account now.