# Suverse Aviation Aircraft Registry Lookup

> Suverse Aviation Aircraft Registry Lookup is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.065/call, status unknown (last checked 2026-09-14).

Resolves a 24-bit ICAO Mode-S hex code to aircraft registration, manufacturer, ICAO type code, full type name, and registered owner/operator.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-aviation-aircraft-registry
- Price: $0.065/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-aviation-aircraft-registry-lookup-64aabfeb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_665_Ebuv_lvELGhYMgMAK

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 suverse-aviation-aircraft-registry-lookup-64aabfeb -d '<json body>'
```

Example prompt: Can you look up the aircraft registration, manufacturer, type, and operator for the ICAO Mode-S hex code 4CA7B5?

## When to prefer this

Use this endpoint when you have a raw ICAO 24-bit Mode-S hex code (from ADS-B, radar, or flight data) and need to resolve it to structured aircraft identity information including registration, type, and operator — especially when you don't have an API key for other aviation data providers, since this proxies the free hexdb.io registry with no authentication required.

## Known failure modes

- Unknown or unregistered hex code returns empty or null fields
- Malformed hex input (not a valid 24-bit value) may return an error
- hexdb.io upstream unavailability causes proxy timeout or 5xx error
- Military or state aircraft may have restricted or absent registry entries

## How this service works

Resolve an aircraft's 24-bit ICAO Mode-S hex to its registration, manufacturer, ICAO type code, full type name, and registered owner/operator. Free hexdb.io registry, no key. Pass a Mode-S hex like 4CA7B5.

## Output

Returns the aircraft's tail/registration number, manufacturer name, ICAO type code (e.g. B738), full type name (e.g. Boeing 737-800), and the registered owner or operator associated with that Mode-S hex address.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/suverse-aviation-aircraft-registry-lookup-64aabfeb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
