# FAA Aircraft Deregistrations Search

> FAA Aircraft Deregistrations Search is a paid API for AI agents from api.govparse.io, paid per call via x402, $1.25/call, status unknown (last checked 2026-09-14).

Search FAA aircraft deregistration records (2022+) by N-number, registrant, state, status, or cancel date to identify ownership-exit events like sales, exports, scraps, or repossessions.

## Facts

- Endpoint: GET https://api.govparse.io/v1/faa/deregistrations/search
- Price: $1.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/faa-aircraft-deregistrations-search-c462eb75
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AeWp_Aut412Os9EUr5Kmm

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability faa-aircraft-deregistrations-search-c462eb75
```

Example prompt: Can you pull all FAA aircraft deregistrations for registrant 'Wells Fargo Trust' in Florida since January 1, 2025, sorted by cancel date descending, and return up to 50 results?

## When to prefer this

Choose this endpoint when you need to identify aircraft ownership-exit events — sales, exports, scraps, or repossessions — from FAA records since 2022. Ideal for asset-based lenders tracking collateral disposal, dealers sourcing deregistered inventory, auctioneers identifying available aircraft, or compliance teams monitoring fleet changes. Prefer over general FAA registry search when the focus is on deregistration events rather than active ownership.

## Known failure modes

- No results returned when registrant name spelling differs significantly from FAA records (name matching is suffix/punctuation-insensitive but not fuzzy)
- Invalid status code or state code returns empty result set or validation error
- Date range with no deregistrations in scope returns empty array
- Limit exceeding cap of 100 may be rejected or clamped
- Invalid N-number format may return no match if unrecognized

## How this service works

Which aircraft were just deregistered (sold, exported, scrapped, or repossessed)? Search FAA aircraft deregistrations (cancel date >= 2022) by last registrant/owner, N-number, mailing state, status, or cancel date (since/before) — the asset-disposal / ownership-exit event for auctioneers, dealers, and asset-based lenders. Returns the aircraft, its last entity-resolved registrant, and the cancel date. FAA public-domain records.

## Output

Returns a list of deregistered aircraft records, each including the aircraft's N-number, last entity-resolved registrant name and details, deregistration status code, cancel date, and associated metadata drawn from FAA public-domain records.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [],
   "properties": {
    "sort": {
     "type": "string",
     "examples": [
      "cancel_date:desc"
     ],
     "description": "cancel_date | last_action_date :asc|:desc. Default cancel_date:desc."
    },
    "limit": {
     "type": "integer",
     "examples": [
      25
     ],
     "description": "Max rows (default 25, cap 100)."
    },
    "since": {
     "type": "string",
     "examples": [
      "2026-01-01"
     ],
     "description": "Cancel date on/after this date (YYYY-MM-DD)."
    },
    "state": {
     "type": "string",
     "examples": [
      "FL"
     ],
     "description": "Mailing state code(s), CSV."
    },
    "before": {
     "type": "string",
     "examples": [
      "2026-07-01"
     ],
     "description": "Cancel date on/before this date (YYYY-MM-DD)."
    },
    "offset": {
     "type": "integer",
     "examples": [
      0
     ],
     "description": "Rows to skip."
    },
    "status": {
     "type": "string",
     "examples": [
      "E"
     ],
     "description": "Status code(s), CSV."
    },
    "n_number": {
     "type": "string",
     "examples": [
      "12345"
     ],
     "description": "N-number(s), CSV (leading N optional)."
    },
    "entity_id": {
     "type": "string",
     "examples": [
      "b7f3e2d1-4a5c-4e6f-8a9b-0c1d2e3f4a5b"
     ],
     "description": "Resolved registrant entity UUID."
    },
    "registrant": {
     "type": "string",
     "examples": [
      "Wells Fargo Trust"
     ],
     "description": "Last registrant/owner name — suffix/punctuation-insensitive."
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/faa-aircraft-deregistrations-search-c462eb75/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.govparse.io](https://www.zero.xyz/host/api.govparse.io/llms.txt)
