# IPv6 Expand/Compress Bulk Normalizer

> IPv6 Expand/Compress Bulk Normalizer 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).

Bulk-normalizes up to 20 IPv6 addresses in a single concurrent call, returning expanded/compressed forms in input order with per-item error reporting.

## Facts

- Endpoint: GET https://intel.rallylive.ca/bulk/ip/expand
- 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-expand-compress-bulk-normalizer-8e5f546b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IanqmuxFYFB_0rvJQMS-3

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-expand-compress-bulk-normalizer-8e5f546b
```

Example prompt: I have a list of 15 IPv6 addresses in mixed compressed and expanded forms — can you normalize all of them into their full expanded notation and flag any that are invalid?

## When to prefer this

Choose this endpoint when you have multiple IPv6 addresses (up to 20) to normalize in a single operation and want concurrent processing with per-item error reporting. It is more efficient than calling the single /ip/expand endpoint repeatedly and returns results in input order, making it ideal for batch ETL pipelines, log enrichment, and validation workflows where you need to process a list atomically.

## Known failure modes

- More than 20 IPs submitted — batch size limit exceeded
- Malformed IPv6 string in input — per-item error field populated, rest of batch still processed
- Empty input list — returns error or empty result
- Invalid query parameter format — HTTP 400
- Payment not included or insufficient — HTTP 402 payment required

## How this service works

Bulk ipv6 expand compress: up to 20 ips 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/expand endpoint (IPv6 normalizer). Batch enrichment for agents that hold a list. $0.01 per batch.

## Output

Returns an ordered array matching the input list, where each item contains the expanded/compressed IPv6 representation and a per-item error field if normalization failed. A top-level failure count is also included so the caller can quickly assess batch success rate.

## 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-expand-compress-bulk-normalizer-8e5f546b/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)
