# AgentToll Flight Intel — OSINT Aircraft Intelligence

> AgentToll Flight Intel — OSINT Aircraft Intelligence is a paid API for AI agents from agenttoll.dev, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Returns OSINT-filtered flight intelligence including aircraft counts, notable military flights, and anomaly highlights for a given area or query.

## Facts

- Endpoint: POST https://agenttoll.dev/paid/osint/flight-intel
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agenttoll-flight-intel-osint-aircraft-intelligence-a2151e00
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vYtI-0PeVgeCvhct_GoNM

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 agenttoll-flight-intel-osint-aircraft-intelligence-a2151e00 -d '<json body>'
```

Example prompt: Pull flight intel for the area around Fort Bragg — show me total aircraft seen, anything that got flagged, and especially note any military aircraft in the last 24 hours.

## When to prefer this

Use this endpoint when an AI agent needs aviation OSINT data — particularly for detecting military aircraft, anomalous flights, or general aircraft activity in a geographic area. Prefer this over generic flight-tracking APIs when the use case is intelligence-gathering rather than travel logistics, and when pay-per-call micro-payment (USDC on Base) is acceptable.

## Known failure modes

- Invalid or unrecognized location input returns an error or empty result
- Insufficient USDC balance causes payment failure via x402 protocol
- No aircraft data available for a remote or restricted airspace returns zero counts
- Overly broad queries may return throttled or rate-limited responses
- Military list may be empty if no notable military aircraft were detected

## How this service works

108+ receipt-backed x402 work products for AI agents. Clear prices, spend caps, buyer metadata, and structured results over Base USDC.

## Output

A JSON object containing the total number of aircraft seen in the queried area/timeframe, the count of aircraft passing filters, and a list of notable military aircraft detected, enabling OSINT analysis of aviation activity.

## 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": {
      "hours_back": {
       "type": "integer",
       "maximum": 72,
       "minimum": 1
      },
      "tail_number": {
       "type": "string",
       "maxLength": 20
      },
      "airport_code": {
       "type": "string",
       "maxLength": 10
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "filtered_count": 3,
  "notable_military": [],
  "total_aircraft_seen": 42
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agenttoll-flight-intel-osint-aircraft-intelligence-a2151e00/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agenttoll.dev](https://www.zero.xyz/host/agenttoll.dev/llms.txt)
