# AeroLOPA Seat Map Scraper (`crawlerbros/aerolopa-seat-map-scraper`) Actor

Scrape AeroLOPA.com airplane seat maps - seat pitch, width, recline, and AeroLOPA's own seat quality ratings per cabin class, browsable by airline or aircraft type. A free SeatGuru alternative.

- **URL**: https://apify.com/crawlerbros/aerolopa-seat-map-scraper.md
- **Developed by:** [Crawler Bros](https://apify.com/crawlerbros) (community)
- **Categories:** Automation, Travel
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $3.00 / 1,000 results

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## AeroLOPA Seat Map Scraper

Scrape **AeroLOPA** (aerolopa.com) — a free, community-maintained airplane seat-map
database that has filled the gap left by SeatGuru's 2025 shutdown. Get seat pitch,
width, recline, and AeroLOPA's own per-seat quality ratings (Good / Be Aware / Avoid)
for every cabin class, browsable by airline or by aircraft type, or looked up directly
by seat-map code. HTTP-only. No auth, no proxy, no login required.

### What this actor does

- **Three modes:** browse by airline, compare an aircraft type across every airline
  that flies it, or look up specific seat-map codes directly
- **Per-cabin seat specs:** pitch, width, recline, screen size, power/USB, Wi-Fi,
  and AeroLOPA's aggregated seat quality rating for every cabin class
- **Cross-airline comparison:** see economy pitch, cabin mix, in-flight entertainment,
  and Wi-Fi for every airline flying a given aircraft type side by side
- **201 airlines and 60+ aircraft types** covered, from the full AeroLOPA catalog
- **Filters:** cabin class, seat pitch range, minimum fleet size, seat rating
- **Empty fields are omitted** — you never have to defend against `null`

### Output: per cabin class (mode = `byAirline` / `byVariant`)

- `variantCode` — AeroLOPA's seat-map code, e.g. `ba-789`
- `airlineCode`, `airlineName`
- `aircraftType`, `aircraftTypeDisplayed`, `aircraftManufacturer`, `haulType`
- `fleetCount`, `totalSeats`
- `description` — human-readable cabin configuration summary
- `cabinType`, `cabinClass`, `cabinCategory` (normalized: `first` / `business` /
  `premium_economy` / `economy`)
- `cabinNumSeats`, `cabinRows`
- `pitch`, `pitchInches`, `pitchInfo`
- `width`, `widthInches`, `widthInfo`
- `recline`, `reclineDegrees` (lie-flat cabins), `reclineInches` (recliner cabins), `reclineInfo`
- `screenInfo`, `cabinWifiInfo`, `wifiTechnology`, `wifiRating`, `ifeDescription`
- `power`, `usb`, `bluetoothConnectivity`, `wirelessCharging`, `privacyDoors`
- `adjustableArmrests`, `adjustableArmrestsInfo`, `adjustableHeadrestInfo`
- `personalGasperVent`, `seatDescription`, `seatInfo`
- `ratingLabel` (`good` / `be_aware` / `avoid`), `ratingGreenCount`, `ratingYellowCount`,
  `ratingRedCount`, `ratingGreenPct` — aggregated from AeroLOPA's per-seat ratings
- `seatMapImageUrl` — full seat-map diagram image
- `lastUpdated`, `sourceUrl`
- `recordType: "seatCabin"`, `scrapedAt`

### Output: per airline configuration (mode = `byAircraft`)

- `variantCode`, `airlineCode`, `airlineName`
- `aircraftType`, `aircraftTypeDisplayed`, `haulType`
- `totalSeats`, `seatsFirst`, `seatsBusiness`, `seatsPremiumEconomy`, `seatsEconomy`
- `pitchEconomyInches`, `fleetCount`
- `hasIfe`, `ifeType`, `ifeDescription`
- `wifiTechnology`, `wifiRating`
- `hasPower`, `hasUsb`, `hasLieflatBusiness`
- `tileImageUrl`, `lastUpdated`, `sourceUrl`
- `recordType: "aircraftVariant"`, `scrapedAt`

### Input

| Field | Type | Default | Description |
|---|---|---|---|
| `mode` | string | `byAirline` | `byAirline` / `byAircraft` / `byVariant` |
| `airlineCode` | string | `ba` | Airline to browse (mode=byAirline) — one of 201 airlines |
| `aircraftType` | string | `boeing-787-9` | Aircraft type to compare across airlines (mode=byAircraft) |
| `variantCodes` | array | – | Exact seat-map codes to fetch, e.g. `ba-789` (mode=byVariant) |
| `cabinClasses` | array | `[]` | Restrict to `first` / `business` / `premium_economy` / `economy` |
| `minPitchInches` | int | – | Drop cabins with less pitch than this |
| `maxPitchInches` | int | – | Drop cabins with more pitch than this |
| `minFleetCount` | int | – | Drop records for aircraft with a smaller fleet |
| `ratingLabel` | string | `any` | Keep only cabins rated `good` / `be_aware` / `avoid` |
| `maxItems` | int | `50` | Hard cap on emitted records (1–2000) |

#### Example: browse British Airways' full fleet

```json
{
  "mode": "byAirline",
  "airlineCode": "ba",
  "maxItems": 50
}
````

#### Example: compare Boeing 787-9 economy pitch across airlines

```json
{
  "mode": "byAircraft",
  "aircraftType": "boeing-787-9",
  "minFleetCount": 5,
  "maxItems": 100
}
```

#### Example: look up a specific seat map, business class only

```json
{
  "mode": "byVariant",
  "variantCodes": ["ba-789", "dl-359"],
  "cabinClasses": ["business"]
}
```

#### Example: find the roomiest economy seats fleet-wide

```json
{
  "mode": "byAirline",
  "airlineCode": "sq",
  "cabinClasses": ["economy"],
  "minPitchInches": 32,
  "ratingLabel": "good"
}
```

### Use cases

- **Travel bloggers / review sites** — pull authoritative seat specs instead of
  screenshotting seat maps by hand
- **Frequent flyers** — compare legroom and recline across every 787-9 operator
  before choosing a flight
- **Travel-tech products** — power a "check your seat" feature without maintaining
  your own seat-map database
- **Loyalty/points communities** — surface which cabins have the best AeroLOPA
  seat ratings for award redemptions
- **Fleet researchers** — track cabin configuration and IFE/Wi-Fi rollout across
  an airline's fleet

### FAQ

**What is the data source?**
All data comes from the public pages of [aerolopa.com](https://www.aerolopa.com), a
free seat-map database built as a successor to SeatGuru. This actor is an independent
third-party scraper and is not affiliated with AeroLOPA.

**Why is `pitch` sometimes missing for a cabin?**
Some cabins — mainly fully-flat suites — are measured by bed length rather than seat
pitch, so AeroLOPA leaves the field blank. This actor omits the field rather than
show a fake `0` or empty string.

**What does `ratingLabel` mean?**
AeroLOPA rates individual seats within a cabin Good / Be Aware / Avoid (e.g. for
missing windows, reduced recline, or proximity to galleys/lavatories). This actor
aggregates those per-seat ratings into a majority label plus green/yellow/red counts
for the whole cabin.

**Why does `byAircraft` mode not include `pitch`/`width`/`recline`?**
That mode reads AeroLOPA's cross-airline comparison table, which only publishes
economy pitch (`pitchEconomyInches`) at a glance. For full per-cabin pitch, width,
and recline, use `byAirline` or `byVariant` mode, which reads each airline's full
seat-map page.

**How fresh is the data?**
Each seat-map record includes `lastUpdated`, reflecting AeroLOPA's own revision date
for that aircraft configuration. AeroLOPA updates records as airlines retrofit cabins.

**Can I look up an airline or aircraft type that isn't in the dropdown?**
The dropdowns cover AeroLOPA's full current catalog (201 airlines, 60+ aircraft
types) at the time of writing. If AeroLOPA adds a new airline or aircraft type later,
use `byVariant` mode with the exact seat-map code instead (visible in the
`variantCode` field of any existing record, or in the aerolopa.com URL).

**Does this cost extra for proxy or authentication?**
No. The actor uses Apify's free `AUTO` proxy group and requires no login, cookies,
or API keys.

# Actor input Schema

## `mode` (type: `string`):

What to fetch.

## `airlineCode` (type: `string`):

Airline to browse. Emits one record per cabin class per aircraft variant operated by this airline.

## `aircraftType` (type: `string`):

Aircraft type to compare across every airline that flies it. Emits one summary record per airline+aircraft configuration (seat counts, economy pitch, wifi, IFE).

## `variantCodes` (type: `array`):

Exact AeroLOPA seat-map codes, e.g. `ba-789` (British Airways 787-9), `dl-359` (Delta A350). Find these on aerolopa.com URLs or in byAirline output's `variantCode` field.

## `cabinClasses` (type: `array`):

Restrict cabin-level records (byAirline / byVariant) to these cabin classes. Leave empty for all.

## `minPitchInches` (type: `integer`):

Drop cabin records with a parsed seat pitch below this many inches (byAirline / byVariant only; unparsable pitch values pass through).

## `maxPitchInches` (type: `integer`):

Drop cabin records with a parsed seat pitch above this many inches (byAirline / byVariant only; unparsable pitch values pass through).

## `minFleetCount` (type: `integer`):

Drop records for aircraft variants with fewer than this many aircraft in the operator's fleet.

## `ratingLabel` (type: `string`):

Keep only cabin records whose overall seat rating matches (byAirline / byVariant only). AeroLOPA rates individual seats Good / Be Aware / Avoid; this filters on the cabin's majority rating.

## `maxItems` (type: `integer`):

Hard cap on emitted records.

## Actor input object example

```json
{
  "mode": "byAirline",
  "airlineCode": "ba",
  "aircraftType": "boeing-787-9",
  "variantCodes": [
    "ba-789"
  ],
  "cabinClasses": [],
  "ratingLabel": "any",
  "maxItems": 50
}
```

# Actor output Schema

## `seatMaps` (type: `string`):

Dataset containing all scraped AeroLOPA seat-map records.

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "mode": "byAirline",
    "airlineCode": "ba",
    "aircraftType": "boeing-787-9",
    "variantCodes": [
        "ba-789"
    ],
    "cabinClasses": [],
    "ratingLabel": "any",
    "maxItems": 50
};

// Run the Actor and wait for it to finish
const run = await client.actor("crawlerbros/aerolopa-seat-map-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "mode": "byAirline",
    "airlineCode": "ba",
    "aircraftType": "boeing-787-9",
    "variantCodes": ["ba-789"],
    "cabinClasses": [],
    "ratingLabel": "any",
    "maxItems": 50,
}

# Run the Actor and wait for it to finish
run = client.actor("crawlerbros/aerolopa-seat-map-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "mode": "byAirline",
  "airlineCode": "ba",
  "aircraftType": "boeing-787-9",
  "variantCodes": [
    "ba-789"
  ],
  "cabinClasses": [],
  "ratingLabel": "any",
  "maxItems": 50
}' |
apify call crawlerbros/aerolopa-seat-map-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=crawlerbros/aerolopa-seat-map-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "AeroLOPA Seat Map Scraper",
        "description": "Scrape AeroLOPA.com airplane seat maps - seat pitch, width, recline, and AeroLOPA's own seat quality ratings per cabin class, browsable by airline or aircraft type. A free SeatGuru alternative.",
        "version": "1.0",
        "x-build-id": "sADerkqMZ3ZePdJth"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/crawlerbros~aerolopa-seat-map-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-crawlerbros-aerolopa-seat-map-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/crawlerbros~aerolopa-seat-map-scraper/runs": {
            "post": {
                "operationId": "runs-sync-crawlerbros-aerolopa-seat-map-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/crawlerbros~aerolopa-seat-map-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-crawlerbros-aerolopa-seat-map-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "mode"
                ],
                "properties": {
                    "mode": {
                        "title": "Mode",
                        "enum": [
                            "byAirline",
                            "byAircraft",
                            "byVariant"
                        ],
                        "type": "string",
                        "description": "What to fetch.",
                        "default": "byAirline"
                    },
                    "airlineCode": {
                        "title": "Airline (mode=byAirline)",
                        "enum": [
                            "a3",
                            "ei",
                            "xz",
                            "ar",
                            "am",
                            "ah",
                            "g9",
                            "kc",
                            "uu",
                            "bx",
                            "ac",
                            "tx",
                            "ca",
                            "hf",
                            "en",
                            "ux",
                            "af",
                            "gl",
                            "e2",
                            "ai",
                            "nq",
                            "nx",
                            "mk",
                            "nz",
                            "4n",
                            "yp",
                            "rs",
                            "ju",
                            "tn",
                            "ts",
                            "ak",
                            "bt",
                            "sb",
                            "4z",
                            "vf",
                            "qp",
                            "as",
                            "g4",
                            "aa",
                            "nh",
                            "dm",
                            "iz",
                            "oz",
                            "gr",
                            "os",
                            "av",
                            "j2",
                            "s4",
                            "ad",
                            "pg",
                            "id",
                            "b4",
                            "bg",
                            "nt",
                            "ob",
                            "mx",
                            "ba",
                            "sn",
                            "fb",
                            "5t",
                            "bw",
                            "cx",
                            "kx",
                            "5j",
                            "cs",
                            "ci",
                            "mu",
                            "cz",
                            "qg",
                            "de",
                            "cm",
                            "ss",
                            "ou",
                            "cy",
                            "dl",
                            "4y",
                            "u2",
                            "wk",
                            "ms",
                            "ly",
                            "ek",
                            "et",
                            "ey",
                            "ew",
                            "br",
                            "fj",
                            "ay",
                            "f8",
                            "f3",
                            "fz",
                            "xy",
                            "bf",
                            "f9",
                            "ga",
                            "g3",
                            "gf",
                            "hu",
                            "ha",
                            "2l",
                            "uo",
                            "hx",
                            "ib",
                            "fi",
                            "6e",
                            "az",
                            "jl",
                            "7c",
                            "ls",
                            "b6",
                            "ja",
                            "jq",
                            "lj",
                            "xe",
                            "ho",
                            "kq",
                            "kl",
                            "km",
                            "ke",
                            "ku",
                            "b0",
                            "la",
                            "ll",
                            "jt",
                            "lm",
                            "lo",
                            "lh",
                            "lg",
                            "mh",
                            "me",
                            "om",
                            "no",
                            "n0",
                            "dy",
                            "oa",
                            "wy",
                            "mm",
                            "pc",
                            "pr",
                            "pk",
                            "pd",
                            "qf",
                            "qr",
                            "zl",
                            "rx",
                            "at",
                            "bi",
                            "rj",
                            "wb",
                            "fr",
                            "sk",
                            "sv",
                            "tr",
                            "fm",
                            "zh",
                            "3u",
                            "sq",
                            "gq",
                            "5y",
                            "bc",
                            "qs",
                            "sa",
                            "wn",
                            "sg",
                            "nk",
                            "9c",
                            "ul",
                            "7g",
                            "jx",
                            "sy",
                            "xq",
                            "wg",
                            "y8",
                            "lx",
                            "tw",
                            "dt",
                            "tp",
                            "ro",
                            "tg",
                            "sl",
                            "gs",
                            "zt",
                            "hv",
                            "by",
                            "tb",
                            "tu",
                            "tk",
                            "ua",
                            "hy",
                            "vj",
                            "vn",
                            "vs",
                            "va",
                            "vb",
                            "y4",
                            "v7",
                            "vy",
                            "ws",
                            "wf",
                            "w6",
                            "mf",
                            "zg"
                        ],
                        "type": "string",
                        "description": "Airline to browse. Emits one record per cabin class per aircraft variant operated by this airline.",
                        "default": "ba"
                    },
                    "aircraftType": {
                        "title": "Aircraft type (mode=byAircraft)",
                        "enum": [
                            "airbus-a220-300",
                            "airbus-a318",
                            "airbus-a319",
                            "airbus-a320",
                            "airbus-a320neo",
                            "airbus-a321",
                            "airbus-a321neo",
                            "airbus-a330",
                            "airbus-a330-300",
                            "airbus-a330-900neo",
                            "airbus-a340-300",
                            "airbus-a340-600",
                            "airbus-a350-1000",
                            "airbus-a350-900",
                            "airbus-a380",
                            "atr-42",
                            "atr-72",
                            "boeing-717",
                            "boeing-737-max-8",
                            "boeing-737-max-9",
                            "boeing-737-300",
                            "boeing-737-400",
                            "boeing-737-500",
                            "boeing-737-600",
                            "boeing-737-700",
                            "boeing-737-800",
                            "boeing-737-900",
                            "boeing-747",
                            "boeing-747-8",
                            "boeing-757-200",
                            "boeing-757-300",
                            "boeing-767-300",
                            "boeing-767-400",
                            "boeing-777",
                            "boeing-777-200",
                            "boeing-777-300",
                            "boeing-777-300er",
                            "boeing-787-10",
                            "boeing-787-8",
                            "boeing-787-9",
                            "bombardier-crj-1000",
                            "bombardier-crj-200",
                            "bombardier-crj-550",
                            "bombardier-crj-700",
                            "bombardier-crj-900",
                            "britten-norman-bn-2b-islander",
                            "comac-c909",
                            "comac-c919",
                            "dhc-dash-8",
                            "dhc-dash-8-200",
                            "dhc-dash-8-300",
                            "dhc-dash-8-400",
                            "dhc-6-twin-otter",
                            "embraer-145",
                            "embraer-e135",
                            "embraer-e170",
                            "embraer-e175",
                            "embraer-e190",
                            "embraer-e195",
                            "fokker-100",
                            "saab-340"
                        ],
                        "type": "string",
                        "description": "Aircraft type to compare across every airline that flies it. Emits one summary record per airline+aircraft configuration (seat counts, economy pitch, wifi, IFE).",
                        "default": "boeing-787-9"
                    },
                    "variantCodes": {
                        "title": "Seat-map codes (mode=byVariant)",
                        "type": "array",
                        "description": "Exact AeroLOPA seat-map codes, e.g. `ba-789` (British Airways 787-9), `dl-359` (Delta A350). Find these on aerolopa.com URLs or in byAirline output's `variantCode` field.",
                        "default": [],
                        "items": {
                            "type": "string"
                        }
                    },
                    "cabinClasses": {
                        "title": "Cabin classes",
                        "uniqueItems": true,
                        "type": "array",
                        "description": "Restrict cabin-level records (byAirline / byVariant) to these cabin classes. Leave empty for all.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "first",
                                "business",
                                "premium_economy",
                                "economy"
                            ]
                        },
                        "default": []
                    },
                    "minPitchInches": {
                        "title": "Min seat pitch (inches)",
                        "minimum": 0,
                        "maximum": 100,
                        "type": "integer",
                        "description": "Drop cabin records with a parsed seat pitch below this many inches (byAirline / byVariant only; unparsable pitch values pass through)."
                    },
                    "maxPitchInches": {
                        "title": "Max seat pitch (inches)",
                        "minimum": 0,
                        "maximum": 100,
                        "type": "integer",
                        "description": "Drop cabin records with a parsed seat pitch above this many inches (byAirline / byVariant only; unparsable pitch values pass through)."
                    },
                    "minFleetCount": {
                        "title": "Min fleet count",
                        "minimum": 0,
                        "maximum": 2000,
                        "type": "integer",
                        "description": "Drop records for aircraft variants with fewer than this many aircraft in the operator's fleet."
                    },
                    "ratingLabel": {
                        "title": "Seat rating filter",
                        "enum": [
                            "any",
                            "good",
                            "be_aware",
                            "avoid"
                        ],
                        "type": "string",
                        "description": "Keep only cabin records whose overall seat rating matches (byAirline / byVariant only). AeroLOPA rates individual seats Good / Be Aware / Avoid; this filters on the cabin's majority rating.",
                        "default": "any"
                    },
                    "maxItems": {
                        "title": "Max items",
                        "minimum": 1,
                        "maximum": 2000,
                        "type": "integer",
                        "description": "Hard cap on emitted records.",
                        "default": 50
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
