# Agent Preflight Batch — Multi-URL Preflight Analysis

> Agent Preflight Batch — Multi-URL Preflight Analysis is a paid API for AI agents from preflight.lorensaisolutions.com, paid per call via x402, $0.35/call, status unknown (last checked 2026-09-14).

Runs batch preflight checks across multiple URLs simultaneously, covering CAPTCHA/login detection, API discovery, product intelligence, and change monitoring for AI agents.

## Facts

- Endpoint: POST https://preflight.lorensaisolutions.com/v1/batch-preflight
- Price: $0.35/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-preflight-batch-multi-url-preflight-analysis-ebf3ba1b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KO7oBzcUwt_ITzH_8Jshj

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 agent-preflight-batch-multi-url-preflight-analysis-ebf3ba1b -d '<json body>'
```

Example prompt: Before my agent swarm starts crawling, run batch preflight on these URLs — https://shop.example.com/products, https://api.example.com/v2, https://portal.example.com/login — and tell me which ones have CAPTCHAs or login walls, what APIs are discoverable, and whether any content has changed since last check.

## When to prefer this

Use this endpoint when you need to pre-screen multiple URLs in a single call before dispatching an agent or agent swarm — especially when you need to know upfront which URLs have login walls, CAPTCHAs, discoverable APIs, or recent content changes. Prefer it over single-URL tools when operating at scale or coordinating multi-agent workflows that require access intelligence before committing to crawl or scrape operations.

## Known failure modes

- Invalid or malformed URLs in the batch return per-URL failure entries
- Network timeout reaching a target URL results in that URL marked as failed
- Payment not fulfilled causes 402 rejection before processing begins
- Empty or missing 'urls' field causes a 400 bad request
- Rate limiting on target sites may result in incomplete preflight data for some URLs

## How this service works

Paid URL analysis, CAPTCHA and login detection, API discovery, product intelligence, change monitoring, and batch preflight for AI agents and agent swarms.

## Output

A JSON object containing a batch summary (total URLs processed, succeeded, failed) plus per-URL preflight results covering CAPTCHA/login detection status, discovered API endpoints, product intelligence signals, and change monitoring flags.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "urls": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "results": [
   {
    "finalUrl": "https://example.com/",
    "pageType": "website",
    "reachable": true,
    "riskFlags": [],
    "confidence": 0.92,
    "httpStatus": 200,
    "contentType": "text/html",
    "loginRequired": false,
    "captchaPresent": false,
    "browserRequired": false,
    "recommendedAction": "Use direct fetch",
    "botProtectionPresent": false,
    "directFetchSufficient": true
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-preflight-batch-multi-url-preflight-analysis-ebf3ba1b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from preflight.lorensaisolutions.com](https://www.zero.xyz/host/preflight.lorensaisolutions.com/llms.txt)
