# 2s.io Aircraft Profile + OFAC Sanctions Screen

> 2s.io Aircraft Profile + OFAC Sanctions Screen is a paid API for AI agents from 2s.io, paid per call via x402, $0.00432/call, status unknown (last checked 2026-09-14).

Look up a US-registered aircraft by tail number or ICAO24 hex and simultaneously screen its owner and operator against the OFAC sanctions list.

## Facts

- Endpoint: GET https://2s.io/api/aircraft/profile
- Price: $0.00432/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/2s-io-aircraft-profile-ofac-sanctions-screen-262982b6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eF5PWqSL8i9PrnZE7BxIb

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 2s-io-aircraft-profile-ofac-sanctions-screen-262982b6
```

Example prompt: Can you look up the aircraft with tail number N628TS and check whether its owner or operator appears on the OFAC sanctions list? Use a match threshold of 0.6.

## When to prefer this

Use this endpoint when you need both aircraft identity and sanctions compliance screening in a single call. Ideal for OSINT, due diligence, anti-money-laundering workflows, sanctions-evasion investigations, or asset tracing involving US-registered aircraft. Prefer over separate aircraft lookup + sanctions check endpoints when you want a single atomic result. Note that screening is name-based and probabilistic — flagged matches should be reviewed manually.

## Known failure modes

- Aircraft not found in FAA registry — returns empty or not-found result
- Invalid tail number or ICAO24 format — may return validation error
- Sanctions check may return error independently if screening service is unavailable
- Fuzzy match threshold too high — may miss real matches; too low — may produce false positives
- ICAO24 hex not recognized — returns no aircraft record

## How this service works

Identify a US-registered aircraft by tail (N-number) or icao24 Mode-S hex, AND screen its owner and operator against the OFAC sanctions list — in one call. Returns the full aircraft record (registration, manufacturer, model, type, serial, owner, operator, year built) plus a sanctions screen of the owner and operator names against OFAC SDN, with fuzzy-match confidence and a flagged boolean. OSINT, asset-tracing, sanctions-evasion investigation, due diligence. Composition of /api/aircraft/lookup + /api/law/sanctions-check (the sanctions section reports found/error independently). Note: screening is name-based and probabilistic — review flagged matches manually.

## Output

Returns a full FAA aircraft record (registration, manufacturer, model, type, serial number, owner, operator, year built) plus an OFAC SDN sanctions screen of the owner and operator names, including fuzzy-match confidence scores and a flagged boolean for each. The sanctions section reports independently with found/error status.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "tail": "N628TS",
   "threshold": 0.6
  }
 }
}
```

## 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",
    "queryParams"
   ],
   "properties": {
    "type": {
     "const": "http"
    },
    "method": {
     "const": "GET"
    },
    "queryParams": {
     "properties": {
      "tail": {
       "type": "string",
       "description": "Tail / N-number (e.g. \"N628TS\")."
      },
      "icao24": {
       "type": "string",
       "description": "24-bit Mode-S hex (e.g. \"a1b2c3\")."
      },
      "threshold": {
       "type": "number",
       "default": 0.5,
       "maximum": 1,
       "minimum": 0.1
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/2s-io-aircraft-profile-ofac-sanctions-screen-262982b6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 2s.io](https://www.zero.xyz/host/2s.io/llms.txt)
