Who owns which aircraft, and what did they just register? Search the FAA aircraft registry
Who owns which aircraft, and what did they just register? Search the FAA aircraft registry by registrant/owner, N-number, manufacturer, model, type_aircraft, type_registrant (1 individual/3 corp/7 LLC), state, city, status, fractional-only, or certificate-issue date (registered_since — new-ownership tell). Returns the aircraft (make/model/type/year/seats) and its entity-resolved registrant. FAA public-domain records.
1250000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-06
updated
Provider
api.govparse.io · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x3873d15CF3209c32aaA8d9AA542164E658567129",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "1250000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "BdcZbENFdEyEUMqv9pnRMUnn1Yyeyo2dCMbYXbJ3LmaB",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "1250000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"mfr": "Cessna",
"n_number": "1000E",
"registrant": "NetJets"
},
"type": "http"
},
"output": {
"example": {
"rows": [
{
"cert_issue_date": "2016-02-16",
"city": "Oklahoma City",
"entity_id": null,
"is_fractional": false,
"mfr_name": "CESSNA",
"model_name": "550",
"n_number": "1000E",
"name": "Example Aviation Holdings LLC",
"num_seats": 9,
"registrant_type_desc": "Corporation",
"serial_number": "550-1011",
"state": "OK",
"status_code": "V",
"type_aircraft": "5",
"type_aircraft_desc": "Fixed wing multi engine",
"type_registrant": "3",
"year_mfr": 2002
}
],
"total_matched": 1
},
"type": "json"
}
},
"routeTemplate": "/v1/faa/aircraft/search",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"city": {
"description": "Registrant city fragment.",
"examples": [
"Dallas"
],
"type": "string"
},
"entity_id": {
"description": "Resolved registrant entity UUID (pivots to business360).",
"examples": [
"b7f3e2d1-4a5c-4e6f-8a9b-0c1d2e3f4a5b"
],
"type": "string"
},
"fractional": {
"description": "true = fractional-ownership aircraft only.",
"examples": [
"true"
],
"type": "string"
},
"limit": {
"description": "Max rows (default 25, cap 100).",
"examples": [
25
],
"type": "integer"
},
"mfr": {
"description": "Manufacturer name fragment.",
"examples": [
"Cessna"
],
"type": "string"
},
"model": {
"description": "Model name fragment.",
"examples": [
"Citation"
],
"type": "string"
},
"n_number": {
"description": "N-number(s), CSV (leading N optional).",
"examples": [
"1000E"
],
"type": "string"
},
"offset": {
"description": "Rows to skip.",
"examples": [
0
],
"type": "integer"
},
"registered_since": {
"description": "Certificate-issue date on/after this date (YYYY-MM-DD) — new registrations/ownership.",
"examples": [
"2026-01-01"
],
"type": "string"
},
"registrant": {
"description": "Registrant/owner name — suffix/punctuation-insensitive.",
"examples": [
"NetJets"
],
"type": "string"
},
"since": {
"description": "Last-action date on/after this date (YYYY-MM-DD).",
"examples": [
"2026-01-01"
],
"type": "string"
},
"sort": {
"description": "cert_issue_date | last_action_date | year_mfr :asc|:desc. Default cert_issue_date:desc.",
"examples": [
"cert_issue_date:desc"
],
"type": "string"
},
"state": {
"description": "Registrant state code(s), CSV.",
"examples": [
"TX"
],
"type": "string"
},
"status": {
"description": "Registration status code(s), CSV (V = valid).",
"examples": [
"V"
],
"type": "string"
},
"type_aircraft": {
"description": "Type-aircraft code(s), CSV (4 fixed-wing single, 5 fixed-wing multi, 6 rotorcraft).",
"examples": [
"5"
],
"type": "string"
},
"type_registrant": {
"description": "Registrant-type code(s), CSV (1 individual, 3 corporation, 7 LLC).",
"examples": [
"3"
],
"type": "string"
}
},
"required": [],
"type": "object"
}
},
"type": "object"
}
}
}Use it
curl
curl "https://api.govparse.io/v1/faa/aircraft/search" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.govparse.io/v1/faa/aircraft/search");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://api.govparse.io/v1/faa/aircraft/search")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/14597.json, and this resource appears in /discovery/resources and /discovery/search.