# Nonstop Miami to San Francisco - MIA to SFO Fares

**Use case:** 

Find nonstop Miami to San Francisco flights on MIA to SFO. Compare live fares, airlines, departure times and duration in CSV or JSON.

## Input

```json
{
  "origin": "MIA",
  "destination": "SFO",
  "departureDate": "2026-09-15",
  "returnDate": "",
  "adults": 1,
  "maxResults": 30,
  "cabinClass": "economy",
  "maxStops": "0",
  "sort": "best",
  "currency": "USD",
  "includePriceGrid": false,
  "priceGridDays": 14
}
```

## Output

```json
{
  "airline": {
    "label": "✈ Airline",
    "format": "string"
  },
  "departure_time": {
    "label": "🕐 Departs",
    "format": "string"
  },
  "arrival_time": {
    "label": "🕓 Arrives",
    "format": "string"
  },
  "duration_minutes": {
    "label": "⏱ Duration",
    "format": "integer"
  },
  "stops": {
    "label": "🛑 Stops",
    "format": "integer"
  },
  "price": {
    "label": "💲 Price",
    "format": "number"
  },
  "cabin_class": {
    "label": "💺 Cabin",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Flights Scraper](https://apify.com/jdtpnjtp/google-flights-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/jdtpnjtp/google-flights-scraper) to learn more, explore other use cases, and run it yourself.