# Trade-A-Plane Piston Single Aircraft Scraper

**Use case:** 

Scrape Trade-A-Plane single-engine piston aircraft listings with title, price, year, make, model, and location. Export to JSON or CSV.

## Input

```json
{
  "category": "piston-single-aircraft",
  "maxItems": 50
}
```

## Output

```json
{
  "category": {
    "label": "🏷️ Category",
    "format": "text"
  },
  "make": {
    "label": "🏭 Make",
    "format": "text"
  },
  "model": {
    "label": "✈️ Model",
    "format": "text"
  },
  "year": {
    "label": "📅 Year",
    "format": "number"
  },
  "price": {
    "label": "💵 Price",
    "format": "number"
  },
  "hours": {
    "label": "⏱️ Hours",
    "format": "number"
  },
  "location": {
    "label": "📍 Location",
    "format": "text"
  },
  "seller_type": {
    "label": "🧑‍💼 Seller",
    "format": "text"
  },
  "listing_id": {
    "label": "🔖 Listing ID",
    "format": "text"
  },
  "images": {
    "label": "🖼️ Images",
    "format": "array"
  },
  "url": {
    "label": "🔗 URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "🕒 Scraped At",
    "format": "date"
  },
  "error": {
    "label": "❌ Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Trade-A-Plane Listings Scraper](https://apify.com/parseforge/trade-a-plane-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/trade-a-plane-scraper) to learn more, explore other use cases, and run it yourself.