# Price flights with an infant in seat

**Use case:** 

Run a bounded passenger-mix search including an infant occupying a seat.

## Input

```json
{
  "origin": "PHX",
  "destination": "SAN",
  "departureDate": "2026-08-18",
  "returnDate": "2026-08-21",
  "tripType": "round-trip",
  "adults": 2,
  "children": 0,
  "infantsInSeat": 1,
  "infantsOnLap": 0,
  "cabinClass": "economy",
  "currency": "USD",
  "maxResults": 5,
  "maxRunSeconds": 270,
  "resumeItems": [],
  "sortBy": "best",
  "maxStops": "any",
  "excludeBasicEconomy": false,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "resultRank": {
    "label": "Rank",
    "format": "number"
  },
  "legType": {
    "label": "Leg",
    "format": "text"
  },
  "queryOrigin": {
    "label": "Origin",
    "format": "text"
  },
  "queryDestination": {
    "label": "Destination",
    "format": "text"
  },
  "queryDepartureDate": {
    "label": "Query departure",
    "format": "date"
  },
  "queryReturnDate": {
    "label": "Query return",
    "format": "date"
  },
  "tripType": {
    "label": "Trip type",
    "format": "text"
  },
  "airline": {
    "label": "Airline",
    "format": "text"
  },
  "airlineCode": {
    "label": "Airline code",
    "format": "text"
  },
  "isBest": {
    "label": "Best",
    "format": "boolean"
  },
  "fareBrand": {
    "label": "Fare brand",
    "format": "text"
  },
  "departureTime": {
    "label": "Departure",
    "format": "text"
  },
  "arrivalTime": {
    "label": "Arrival",
    "format": "text"
  },
  "departureDate": {
    "label": "Flight departure date",
    "format": "date"
  },
  "arrivalDate": {
    "label": "Flight arrival date",
    "format": "date"
  },
  "duration": {
    "label": "Duration",
    "format": "text"
  },
  "durationMinutes": {
    "label": "Duration minutes",
    "format": "number"
  },
  "stops": {
    "label": "Stops",
    "format": "text"
  },
  "stopsCount": {
    "label": "Stops count",
    "format": "number"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "priceText": {
    "label": "Price text",
    "format": "text"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "carryOnIncluded": {
    "label": "Carry-on included",
    "format": "boolean"
  },
  "checkedBagsIncluded": {
    "label": "Checked bags",
    "format": "number"
  },
  "segments": {
    "label": "Segments",
    "format": "object"
  },
  "bookingLink": {
    "label": "Booking link",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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