# ORD to Downtown Chicago Transfer - Live Prices

**Use case:** 

Get live O'Hare (ORD) to downtown Chicago transfer quotes for 3 passengers, with prices, vehicle classes and capacity. Export to CSV or JSON.

## Input

```json
{
  "pickup": "ORD",
  "dropoff": "Downtown Chicago, Illinois",
  "pickupType": "airport",
  "dropoffType": "establishment",
  "pickupDateTime": "2026-07-15T14:30:00",
  "passengers": 3,
  "currency": "USD",
  "vehicleType": "CAR"
}
```

## Output

```json
{
  "car_model": {
    "label": "🚗 Car model",
    "format": "string"
  },
  "supplier_name": {
    "label": "🏢 Supplier",
    "format": "string"
  },
  "price": {
    "label": "💰 Price",
    "format": "number"
  },
  "currency": {
    "label": "💱 Currency",
    "format": "string"
  },
  "max_passengers": {
    "label": "👥 Max passengers",
    "format": "integer"
  },
  "bags": {
    "label": "🧳 Bags",
    "format": "integer"
  },
  "duration_minutes": {
    "label": "⏱ Duration (min)",
    "format": "integer"
  },
  "booking_link": {
    "label": "🔗 Book",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Booking Airport Taxis Scraper - Live Transfer Quotes](https://apify.com/jdtpnjtp/booking-airport-taxis-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/jdtpnjtp/booking-airport-taxis-scraper) to learn more, explore other use cases, and run it yourself.