# Controller.com Aircraft For Sale Scraper (`crawlerbros/controller-aircraft-scraper`) Actor

Scrape aircraft for-sale listings from Controller.com - Sandhills Global's aircraft classifieds marketplace. Search by keyword, browse by aircraft category, and filter by price, year, total time, manufacturer, condition, and location.

- **URL**: https://apify.com/crawlerbros/controller-aircraft-scraper.md
- **Developed by:** [Crawler Bros](https://apify.com/crawlerbros) (community)
- **Categories:** Automation, E-commerce, Lead generation
- **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

## Controller.com Aircraft Scraper

Scrape **aircraft for-sale listings from Controller.com** — Sandhills Global's aircraft classifieds marketplace with thousands of active listings. Search by keyword, browse by aircraft category (single engine piston, multi-engine piston, turboprop, jets, helicopters, experimental, light sport, agricultural, and more), and filter by price, year, total time, manufacturer, condition, listing type, and US state / Canadian province. No login, no API key required.

### What this actor does

- **Keyword search** across make, model, registration number, and serial number
- **Browse by aircraft category** — all 14 real categories from Controller.com's own filter taxonomy
- **Filter by manufacturer**, price range, year range, total airframe time, seat count, year painted, year interior refreshed, condition, listing type, and location
- **Sort** by price or year, ascending or descending
- **Empty fields are omitted** — every record only contains data Controller.com actually published for that listing

### Output per listing

- `id` — Controller.com listing ID
- `title` — full listing title as published (e.g. `2016 CESSNA TTX`)
- `year`, `manufacturer`, `model` — parsed from the title
- `category` — aircraft category (e.g. `Turboprop Aircraft`)
- `price`, `currency` — numeric price in USD, when published
- `priceOnRequest` — `true` when the seller lists "Call for Price" instead of a number
- `condition` — `New` or `Used`, when Controller.com shows it
- `totalTimeHours` — airframe total time in hours
- `serialNumber`, `registrationNumber`
- `engine1MakeModel`, `engine1Time`, `engine2MakeModel`, `engine2Time`
- `engineTboHours` — engine time-between-overhaul, in hours
- `totalLandings`, `seats`, `flightRules`
- `yearPainted`, `yearInterior` — when the listing reports when the paint/interior was last refreshed
- `adsbEquipped`, `waasEquipped`, `svtEquipped` — avionics booleans, when shown
- `additionalSpecs` — any other spec the listing publishes that doesn't map to a field above (e.g. winglets, maintenance programs) — never lost, always preserved
- `description` — seller's summary text
- `city`, `region`, `country` — aircraft location
- `imageUrl` — primary listing photo
- `updatedAt` — when the seller last updated the listing (site-local time)
- `listingUrl`, `sourceUrl` — canonical Controller.com listing URL
- `recordType: "aircraftListing"`, `scrapedAt`

### Input

| Field | Type | Default | Description |
|---|---|---|---|
| `searchQuery` | string | `Cessna` | Keyword search (make, model, registration #, serial #) |
| `category` | select | Any | One aircraft category — see full list below |
| `manufacturer` | string | – | One or more manufacturers, comma-separated (e.g. `Cessna, Cirrus, Beechcraft`) |
| `state` | select | Any | US state or Canadian province where the aircraft is located |
| `condition` | select | Any | `New` or `Used` |
| `listingType` | select | Any | `For Retail`, `For Lease`, or `For Fractional Ownership` |
| `priceMin` / `priceMax` | int | – | Price range in USD |
| `yearMin` / `yearMax` | int | – | Year-built range |
| `totalTimeMin` / `totalTimeMax` | int | – | Airframe total time range, in hours |
| `seatsMin` / `seatsMax` | int | – | Number-of-seats range |
| `yearPaintedMin` / `yearPaintedMax` | int | – | Year-painted range (not every listing reports this) |
| `yearInteriorMin` / `yearInteriorMax` | int | – | Year-interior-refreshed range (not every listing reports this) |
| `sortOrder` | select | Best match | `priceLowHigh` / `priceHighLow` / `yearOldNew` / `yearNewOld` |
| `maxItems` | int | `30` | Hard cap on the number of listings returned |
| `proxyConfiguration` | object | off | Optional Apify Proxy (not required — see FAQ) |

#### Aircraft categories

`Piston Single Aircraft`, `Piston Twin Aircraft`, `Jet Aircraft`, `Turboprop Aircraft`, `Piston Helicopters`, `Turbine Helicopters`, `Experimental / Homebuilt Aircraft`, `Light Sport Aircraft`, `Piston Agricultural Aircraft`, `Turbine Agricultural Aircraft`, `Piston Amphibious / Floatplanes`, `Turbine Amphibious / Floatplanes`, `Piston Military Aircraft`, `Turbine Military Aircraft`.

Leave `category` unset to search across every aircraft category at once.

#### Example: keyword search

```json
{
  "searchQuery": "Cirrus SR22",
  "maxItems": 50
}
````

#### Example: browse turboprops by price and year

```json
{
  "category": "Turboprop Aircraft",
  "priceMin": 1000000,
  "yearMin": 2015,
  "sortOrder": "priceHighLow",
  "maxItems": 50
}
```

#### Example: manufacturer + location filter

```json
{
  "manufacturer": "Cessna, Cirrus",
  "state": "Florida",
  "listingType": "For Retail",
  "maxItems": 100
}
```

#### Example: jets under a total-time cap

```json
{
  "category": "Jet Aircraft",
  "totalTimeMax": 3000,
  "condition": "Used",
  "maxItems": 100
}
```

#### Example: seats and recent paint/interior refresh

```json
{
  "category": "Piston Single Aircraft",
  "seatsMin": 4,
  "yearPaintedMin": 2018,
  "maxItems": 50
}
```

### Use cases

- **Aircraft brokers & dealers** — monitor new and competitor listings by category, price band, or region
- **Market research** — track pricing trends across manufacturers, years, and aircraft categories
- **Aviation finance & leasing** — source retail, lease, and fractional-ownership inventory
- **Aircraft valuation tools** — build comparable-sales datasets from real published listings
- **Buyer's agents** — build a shortlist of aircraft matching a client's budget, hours, and location criteria

### Data source / limitations

- All data comes from the public pages of controller.com. No login or API key is used or required.
- `seats`, `yearPainted`, and `yearInterior` filters are applied server-side and reliably narrow results, but the corresponding output fields only appear when that particular listing's card also displays the spec — not every category/listing surfaces every spec on its summary card.
- Country is not exposed as a filter: Controller.com's own Country facet is an interactive region-map widget rather than a plain value list, and it does not respond to a direct URL parameter — `state` (which covers all US states and Canadian provinces) is the reliable location filter.
- Exact-match lookup fields like registration number and serial number are exposed as **output** fields (`registrationNumber`, `serialNumber`) but are not exposed as input filters, since their server-side matching behavior could not be verified as reliable (partial/prefix values returned zero results in testing).

### FAQ

**Is this affiliated with Controller.com or Sandhills Global?** No — this is an independent, third-party actor that reads publicly available listing pages. It is not affiliated with, endorsed by, or supported by Controller.com or Sandhills Global.

**Do I need a proxy?** No. Controller.com's listings are publicly browsable and the actor works reliably from Apify's datacenter IPs. The `proxyConfiguration` input exists for cases where you need to route through Apify Proxy, but it is off by default to avoid unnecessary cost.

**Why is `price` missing on some listings?** Some sellers list "Call for Price" instead of a number. Those listings get `priceOnRequest: true` and no `price` field — this is exactly what Controller.com publishes, not missing data.

**Why is `condition` missing on most listings?** Controller.com's search results only display the `New`/`Used` badge on a subset of listings; the `condition` input filter itself works reliably (it's applied server-side), even when the field doesn't appear in every returned record.

**Why don't I see `seats`/`yearPainted`/`yearInterior` on every record even when I filter by them?** Same reason as `condition` above — the filters are applied server-side and reliably narrow the result set, but Controller.com only shows those specs on a subset of listing cards.

**Why do I sometimes get fewer records than `maxItems`?** The actor stops once Controller.com's inventory for your filter combination is exhausted. A very restrictive combination of filters (e.g. a rare manufacturer + narrow price band) can legitimately have fewer matching aircraft than your requested `maxItems`.

**Can I search outside the US?** Yes — the `state` filter includes both US states and Canadian provinces, since Controller.com lists aircraft in both countries. Listings elsewhere are returned without a `state` filter applied.

**How fresh is the data?** Every run reads the live Controller.com site — no caching. Each record includes `updatedAt` (last seller update) and `scrapedAt` (when this actor ran).

**Does the actor return every spec Controller.com tracks (avionics, maintenance programs, etc.)?** The actor maps the most common specs to named fields (engine, total time, avionics booleans, etc.) and preserves everything else it finds per listing under `additionalSpecs`, so no published data is discarded — even specs unique to a particular category (e.g. winglets, maintenance programs) are kept.

# Actor input Schema

## `searchQuery` (type: `string`):

Free-text keyword search (make, model, registration #, serial #, etc.). Leave empty to browse by category/filters only.

## `category` (type: `string`):

Restrict results to one aircraft category. Leave as "All aircraft categories" to search across every aircraft type.

## `manufacturer` (type: `string`):

Filter by one or more manufacturers as listed on Controller.com (e.g. `Cessna`, `Cirrus`, `Beechcraft`, `Piper`, `Gulfstream`, `Robinson Helicopter`). Separate multiple manufacturers with a comma.

## `state` (type: `string`):

Restrict results to a US state or Canadian province where the aircraft is located.

## `condition` (type: `string`):

Filter by aircraft condition.

## `listingType` (type: `string`):

Filter by how the aircraft is being offered.

## `priceMin` (type: `integer`):

Only include listings priced at or above this amount. Listings marked "Call for price" are always included regardless of this filter.

## `priceMax` (type: `integer`):

Only include listings priced at or below this amount. Listings marked "Call for price" are always included regardless of this filter.

## `yearMin` (type: `integer`):

Only include aircraft manufactured in or after this year.

## `yearMax` (type: `integer`):

Only include aircraft manufactured in or before this year.

## `totalTimeMin` (type: `integer`):

Only include aircraft with airframe total time at or above this many hours.

## `totalTimeMax` (type: `integer`):

Only include aircraft with airframe total time at or below this many hours.

## `seatsMin` (type: `integer`):

Only include aircraft with at least this many seats.

## `seatsMax` (type: `integer`):

Only include aircraft with at most this many seats.

## `yearPaintedMin` (type: `integer`):

Only include aircraft last painted in or after this year. Not every listing reports this spec.

## `yearPaintedMax` (type: `integer`):

Only include aircraft last painted in or before this year. Not every listing reports this spec.

## `yearInteriorMin` (type: `integer`):

Only include aircraft with interior refreshed in or after this year. Not every listing reports this spec.

## `yearInteriorMax` (type: `integer`):

Only include aircraft with interior refreshed in or before this year. Not every listing reports this spec.

## `sortOrder` (type: `string`):

How results are ordered.

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

Hard cap on the number of listings returned.

## `proxyConfiguration` (type: `object`):

Optional. Controller.com does not require a proxy from Apify datacenter IPs, so this is disabled by default. Enable Apify Proxy (Auto) only if you experience blocking.

## Actor input object example

```json
{
  "searchQuery": "Cessna",
  "category": "",
  "state": "",
  "condition": "",
  "listingType": "",
  "sortOrder": "",
  "maxItems": 30,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# Actor output Schema

## `listings` (type: `string`):

Dataset containing all scraped aircraft listings.

# 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 = {
    "searchQuery": "Cessna",
    "category": "",
    "state": "",
    "condition": "",
    "listingType": "",
    "sortOrder": "",
    "maxItems": 30,
    "proxyConfiguration": {
        "useApifyProxy": false
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("crawlerbros/controller-aircraft-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 = {
    "searchQuery": "Cessna",
    "category": "",
    "state": "",
    "condition": "",
    "listingType": "",
    "sortOrder": "",
    "maxItems": 30,
    "proxyConfiguration": { "useApifyProxy": False },
}

# Run the Actor and wait for it to finish
run = client.actor("crawlerbros/controller-aircraft-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 '{
  "searchQuery": "Cessna",
  "category": "",
  "state": "",
  "condition": "",
  "listingType": "",
  "sortOrder": "",
  "maxItems": 30,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}' |
apify call crawlerbros/controller-aircraft-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Controller.com Aircraft For Sale Scraper",
        "description": "Scrape aircraft for-sale listings from Controller.com - Sandhills Global's aircraft classifieds marketplace. Search by keyword, browse by aircraft category, and filter by price, year, total time, manufacturer, condition, and location.",
        "version": "1.0",
        "x-build-id": "QWwbbKMYsJe5Fy4RA"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/crawlerbros~controller-aircraft-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-crawlerbros-controller-aircraft-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~controller-aircraft-scraper/runs": {
            "post": {
                "operationId": "runs-sync-crawlerbros-controller-aircraft-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~controller-aircraft-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-crawlerbros-controller-aircraft-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",
                "properties": {
                    "searchQuery": {
                        "title": "Keyword search",
                        "type": "string",
                        "description": "Free-text keyword search (make, model, registration #, serial #, etc.). Leave empty to browse by category/filters only.",
                        "default": "Cessna"
                    },
                    "category": {
                        "title": "Aircraft category",
                        "enum": [
                            "",
                            "6",
                            "9",
                            "3",
                            "8",
                            "5",
                            "7",
                            "2",
                            "433",
                            "47",
                            "70",
                            "1",
                            "71",
                            "10004",
                            "10072"
                        ],
                        "type": "string",
                        "description": "Restrict results to one aircraft category. Leave as \"All aircraft categories\" to search across every aircraft type.",
                        "default": ""
                    },
                    "manufacturer": {
                        "title": "Manufacturer(s)",
                        "type": "string",
                        "description": "Filter by one or more manufacturers as listed on Controller.com (e.g. `Cessna`, `Cirrus`, `Beechcraft`, `Piper`, `Gulfstream`, `Robinson Helicopter`). Separate multiple manufacturers with a comma."
                    },
                    "state": {
                        "title": "State / Province",
                        "enum": [
                            "",
                            "Alabama",
                            "Alaska",
                            "Arizona",
                            "Arkansas",
                            "California",
                            "Colorado",
                            "Connecticut",
                            "Delaware",
                            "District of Columbia",
                            "Florida",
                            "Georgia",
                            "Hawaii",
                            "Idaho",
                            "Illinois",
                            "Indiana",
                            "Iowa",
                            "Kansas",
                            "Kentucky",
                            "Louisiana",
                            "Maine",
                            "Maryland",
                            "Massachusetts",
                            "Michigan",
                            "Minnesota",
                            "Mississippi",
                            "Missouri",
                            "Montana",
                            "Nebraska",
                            "Nevada",
                            "New Hampshire",
                            "New Jersey",
                            "New Mexico",
                            "New York",
                            "North Carolina",
                            "North Dakota",
                            "Ohio",
                            "Oklahoma",
                            "Oregon",
                            "Pennsylvania",
                            "Rhode Island",
                            "South Carolina",
                            "South Dakota",
                            "Tennessee",
                            "Texas",
                            "Utah",
                            "Vermont",
                            "Virginia",
                            "Washington",
                            "West Virginia",
                            "Wisconsin",
                            "Wyoming",
                            "Alberta",
                            "British Columbia",
                            "Manitoba",
                            "New Brunswick",
                            "Newfoundland and Labrador",
                            "Nova Scotia",
                            "Ontario",
                            "Prince Edward Island",
                            "Quebec",
                            "Saskatchewan",
                            "Northwest Territories",
                            "Nunavut",
                            "Yukon"
                        ],
                        "type": "string",
                        "description": "Restrict results to a US state or Canadian province where the aircraft is located.",
                        "default": ""
                    },
                    "condition": {
                        "title": "Condition",
                        "enum": [
                            "",
                            "New",
                            "Used"
                        ],
                        "type": "string",
                        "description": "Filter by aircraft condition.",
                        "default": ""
                    },
                    "listingType": {
                        "title": "Listing type",
                        "enum": [
                            "",
                            "For Retail",
                            "For Lease",
                            "For Fractional Ownership"
                        ],
                        "type": "string",
                        "description": "Filter by how the aircraft is being offered.",
                        "default": ""
                    },
                    "priceMin": {
                        "title": "Price (min, USD)",
                        "minimum": 0,
                        "maximum": 1000000000,
                        "type": "integer",
                        "description": "Only include listings priced at or above this amount. Listings marked \"Call for price\" are always included regardless of this filter."
                    },
                    "priceMax": {
                        "title": "Price (max, USD)",
                        "minimum": 0,
                        "maximum": 1000000000,
                        "type": "integer",
                        "description": "Only include listings priced at or below this amount. Listings marked \"Call for price\" are always included regardless of this filter."
                    },
                    "yearMin": {
                        "title": "Year built (min)",
                        "minimum": 1900,
                        "maximum": 2030,
                        "type": "integer",
                        "description": "Only include aircraft manufactured in or after this year."
                    },
                    "yearMax": {
                        "title": "Year built (max)",
                        "minimum": 1900,
                        "maximum": 2030,
                        "type": "integer",
                        "description": "Only include aircraft manufactured in or before this year."
                    },
                    "totalTimeMin": {
                        "title": "Total time (min, hours)",
                        "minimum": 0,
                        "maximum": 200000,
                        "type": "integer",
                        "description": "Only include aircraft with airframe total time at or above this many hours."
                    },
                    "totalTimeMax": {
                        "title": "Total time (max, hours)",
                        "minimum": 0,
                        "maximum": 200000,
                        "type": "integer",
                        "description": "Only include aircraft with airframe total time at or below this many hours."
                    },
                    "seatsMin": {
                        "title": "Number of seats (min)",
                        "minimum": 1,
                        "maximum": 100,
                        "type": "integer",
                        "description": "Only include aircraft with at least this many seats."
                    },
                    "seatsMax": {
                        "title": "Number of seats (max)",
                        "minimum": 1,
                        "maximum": 100,
                        "type": "integer",
                        "description": "Only include aircraft with at most this many seats."
                    },
                    "yearPaintedMin": {
                        "title": "Year painted (min)",
                        "minimum": 1900,
                        "maximum": 2030,
                        "type": "integer",
                        "description": "Only include aircraft last painted in or after this year. Not every listing reports this spec."
                    },
                    "yearPaintedMax": {
                        "title": "Year painted (max)",
                        "minimum": 1900,
                        "maximum": 2030,
                        "type": "integer",
                        "description": "Only include aircraft last painted in or before this year. Not every listing reports this spec."
                    },
                    "yearInteriorMin": {
                        "title": "Year interior refreshed (min)",
                        "minimum": 1900,
                        "maximum": 2030,
                        "type": "integer",
                        "description": "Only include aircraft with interior refreshed in or after this year. Not every listing reports this spec."
                    },
                    "yearInteriorMax": {
                        "title": "Year interior refreshed (max)",
                        "minimum": 1900,
                        "maximum": 2030,
                        "type": "integer",
                        "description": "Only include aircraft with interior refreshed in or before this year. Not every listing reports this spec."
                    },
                    "sortOrder": {
                        "title": "Sort order",
                        "enum": [
                            "",
                            "priceLowHigh",
                            "priceHighLow",
                            "yearOldNew",
                            "yearNewOld"
                        ],
                        "type": "string",
                        "description": "How results are ordered.",
                        "default": ""
                    },
                    "maxItems": {
                        "title": "Max items",
                        "minimum": 1,
                        "maximum": 5000,
                        "type": "integer",
                        "description": "Hard cap on the number of listings returned.",
                        "default": 30
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Optional. Controller.com does not require a proxy from Apify datacenter IPs, so this is disabled by default. Enable Apify Proxy (Auto) only if you experience blocking.",
                        "default": {
                            "useApifyProxy": false
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
