# FCO to Rome Termini Station Transfer - Prices

**Use case:** 

Get live Rome Airport (FCO) to Termini Station transfer quotes under 150 EUR, with prices and vehicle classes. Export results to CSV or JSON.

## Input

```json
{
  "pickup": "FCO",
  "dropoff": "Roma Termini Station",
  "pickupType": "airport",
  "dropoffType": "train_station",
  "pickupDateTime": "2026-07-15T14:30:00",
  "passengers": 2,
  "currency": "EUR",
  "maxPrice": 150,
  "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.