# IPv6 Support Check Bulk

> IPv6 Support Check Bulk is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Checks IPv6 readiness for up to 20 domains in a single concurrent batch call, returning per-domain results in input order with error counts.

## Facts

- Endpoint: GET https://intel.rallylive.ca/bulk/ip/ipv6-support
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ipv6-support-check-bulk-6ba23f43
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FVMsIoNBGb-Ab_WZvMN5m

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 ipv6-support-check-bulk-6ba23f43
```

Example prompt: Can you check which of these domains support IPv6: example.com, myshop.io, blog.net, and about 10 others I'll paste in — I need to know which ones are IPv6-ready and if any checks failed?

## When to prefer this

Use this endpoint when you have a list of 2–20 domains and want to check IPv6 support for all of them efficiently in a single API call rather than making individual requests. Prefer this over the single-domain endpoint whenever batch processing is needed to reduce latency, cost, and API round-trips.

## Known failure modes

- Batch exceeds 20 domains — items beyond limit may be rejected or ignored
- Invalid domain format in input causes per-item error for that entry
- Network timeout for a specific domain results in per-item error with failure incremented in count
- All items fail DNS resolution resulting in maximum failure count
- Payment failure via x402 prevents the call from executing

## How this service works

Bulk ipv6 support check: up to 20 domains in one call, processed concurrently, results returned in input order with a per-item error field and a count of failures. Same answer per item as the single /ip/ipv6-support endpoint (IPv6 readiness check for a domain). Batch enrichment for agents that hold a list. $0.01 per batch.

## Output

Returns an ordered array of per-domain IPv6 readiness results matching the input order, each item containing whether the domain supports IPv6 and any per-item error details, plus an overall count of failed checks across the batch.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "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/ipv6-support-check-bulk-6ba23f43/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from intel.rallylive.ca](https://www.zero.xyz/host/intel.rallylive.ca/llms.txt)
