# AnyWayPossible Batch URL Validator

> AnyWayPossible Batch URL Validator is a paid API for AI agents from anywaypossible.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Validates up to 10 URLs in a single paid call, returning reachability, HTTP status, latency, content type, final URL, and redirect chain for each.

## Facts

- Endpoint: POST https://anywaypossible.com/api/batch
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/anywaypossible-batch-url-validator-178e2599
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MiXnxEzaF5UBs6VskKZKA

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 anywaypossible-batch-url-validator-178e2599 -d '<json body>'
```

Example prompt: Can you check all 8 of these URLs at once and tell me which ones are live, what their final redirect destination is, and how fast they respond — I need to confirm they're all reachable before I include them in my report?

## When to prefer this

Use this endpoint when you need to validate multiple URLs (2–10) in a single atomic call and want redirect chain transparency alongside status and latency, saving round-trips compared to checking each URL individually. Prefer it over single-URL checks when batching citations, API health probes, or link audits where efficiency matters.

## Known failure modes

- URL is malformed or not a valid HTTP/HTTPS address — result marked unreachable with error detail
- Target server times out — result flagged with timeout indicator
- More than 10 URLs submitted — request rejected with validation error
- Network-level block or firewall prevents probe — result marked unreachable
- Payment of $0.01 USDC not included or invalid — request rejected before processing

## How this service works

Batch URL validation for AI agents. Check up to 10 citations, links, websites, or API endpoints in one payment. Returns reachability, exact status, latency, content type, final URL, and safe redirects; partial failures stay isolated.

## Output

Returns a per-URL result array containing: reachability (boolean), exact HTTP status code, response latency (ms), content type header, final resolved URL after redirects, and the full safe redirect chain. Partial failures are isolated so a single bad URL does not block results for the others.

## 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": {
     "type": "object",
     "required": [
      "urls"
     ],
     "properties": {
      "urls": {
       "type": "array",
       "items": {
        "type": "string",
        "format": "uri"
       },
       "maxItems": 10,
       "minItems": 1,
       "description": "One to ten public HTTP(S) URLs"
      },
      "expectedStatus": {
       "type": "integer",
       "maximum": 599,
       "minimum": 100
      }
     }
    },
    "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",
     "required": [
      "verified",
      "count",
      "checkedAt",
      "results"
     ],
     "properties": {
      "count": {
       "type": "integer"
      },
      "results": {
       "type": "array",
       "items": {
        "type": "object"
       }
      },
      "verified": {
       "type": "boolean"
      },
      "checkedAt": {
       "type": "string",
       "format": "date-time"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/anywaypossible-batch-url-validator-178e2599/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from anywaypossible.com](https://www.zero.xyz/host/anywaypossible.com/llms.txt)
