# FAA N-number lookup extractor

**Use case:** 

Enrich aircraft N-numbers with FAA owner, serial, manufacturer, model, engine, status, and certificate fields.

## Input

```json
{
  "nNumbers": [
    "N10001",
    "N10004"
  ],
  "maxItems": 10
}
```

## Output

```json
{
  "nNumber": {
    "label": "N-number"
  },
  "ownerName": {
    "label": "Owner"
  },
  "manufacturer": {
    "label": "Manufacturer"
  },
  "model": {
    "label": "Model"
  },
  "serialNumber": {
    "label": "Serial"
  },
  "yearManufactured": {
    "label": "Year"
  },
  "aircraftType": {
    "label": "Aircraft type"
  },
  "engineManufacturer": {
    "label": "Engine manufacturer"
  },
  "engineModel": {
    "label": "Engine model"
  },
  "city": {
    "label": "City"
  },
  "state": {
    "label": "State"
  },
  "country": {
    "label": "Country"
  },
  "statusCode": {
    "label": "Status"
  },
  "certificateIssueDate": {
    "label": "Certificate issue"
  },
  "expirationDate": {
    "label": "Expiration"
  },
  "sourceFileDate": {
    "label": "FAA file date"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

This example demonstrates how to use [FAA Aircraft Registry Scraper](https://apify.com/automation-lab/faa-aircraft-registry-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/faa-aircraft-registry-scraper) to learn more, explore other use cases, and run it yourself.