KeyVex
Reference & market data

Aircraft Registry (FAA)

The FAA's registry of every currently US-registered aircraft — 314,000+ records, one per N-number: the aircraft (manufacturer, model, seats, engines, year built), and the registrant with the FAA's own type classification (Individual, Corporation, LLC, Government, Co-Owned) plus up to five co-owner names. The corporate-jet ownership dataset — join tail numbers or company names to who actually owns the aircraft. Note that many corporate jets register through trustee banks or management LLCs.

EndpointGET /v1/aircraft-registry
SourceFAA releasable aircraft database
Authx-api-key — a free key works

What it returns

One record per N-number, refreshed monthly from the FAA's daily-updated file. snapshot_date staleness indicates deregistration; the FAA DEREG history file is a planned follow-up. See the live example below for the full field set.

Filters

n_numberDirect lookup by registration (with or without the N prefix).
registrant_nameCase-insensitive substring against registrant + co-owner names.
stateTwo-letter registrant state (e.g., 'TX').
registrant_type_codeFAA code: 1 Individual, 2 Partnership, 3 Corporation, 4 Co-Owned, 5 Government, 7 LLC, 8 Non-Citizen Corp, 9 Non-Citizen Co-Owned.
aircraft_type_codeFAA code: 4 fixed-wing single-engine, 5 fixed-wing multi-engine, 6 rotorcraft, 1 glider, 2 balloon, 9 gyroplane, H hybrid lift, O other.
manufacturerCase-insensitive substring against the manufacturer (e.g., 'gulfstream', 'cessna').
sort_byDefault last_action_date (most recent registry activity first).
sort_orderDefault desc.
limitMaximum records. Default 50, max 500.

Example request

curl "https://api.keyvex.com/v1/aircraft-registry?limit=1" \
  -H "x-api-key: YOUR_KEY"

Response

{
  "results": [
    {
      "country": "US",
      "status_code": "V",
      "city": "WILMINGTON",
      "county_code": "003",
      "mfr_model_code": "3980115",
      "year_mfr": 1995,
      "expiration_date": "2033-06-30",
      "seats": 22,
      "source_url": "https://registry.faa.gov/database/ReleasableAircraft.zip",
      "zip_code": "198081674",
      "manufacturer": "GULFSTREAM AEROSPACE",
      "airworthiness_date": "1995-01-31",
      "mode_s_code_hex": "A95031",
      "engines": 2,
      "last_action_date": "2026-07-06",
      "registrant_type_code": "3",
      "street": "251 LITTLE FALLS DR",
      "kit_model": "",
      "model": "G-IV",
      "state": "DE",
      "street2": "",
      "cert_issue_date": "2026-06-02",
      "engine_type_code": "5",
      "registrant_type": "Corporation",
      "aircraft_type": "Fixed wing multi engine",
      "snapshot_date": "2026-07-07",
      "kit_manufacturer": "",
      "other_names": [],
      "serial_number": "1260",
      "aircraft_type_code": "5",
      "n_number": "N7DK",
      "engine_type": "Turbo-fan",
      "weight_class": "CLASS 3",
      "scraped_at": "2026-07-07T17:36:23.467Z",
      "registrant_name": "AEROTRUST SERVICES CORP TRUSTEE",
      "is_fractional_owner": false,
      "_first_seen_at": "2026-07-07T19:13:50.277Z",
      "_last_history_at": "2026-07-07T19:13:50.277Z",
      "_content_hash": "9edb8bea24a0c26236c43aa3bb860809e8933a180bc34889d4fa241c0de3bb8e"
    }
  ],
  "count": 1,
  "has_more": true
}

Example questions you can answer

Related datasets

Query Aircraft Registry (FAA) from your AI

Hand any AI your key + the OpenAPI spec and it can pull this dataset directly. Free key = full data, 60 requests/day.

Get a free key OpenAPI spec → REST docs →
← All 60+ datasets