# IDN Punycode Bulk Converter

> IDN Punycode Bulk Converter 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).

Converts up to 20 domain names between internationalized (IDN) and punycode forms in a single batch call, with per-item error reporting and homograph detection.

## Facts

- Endpoint: GET https://intel.rallylive.ca/bulk/dns/idn
- 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/idn-punycode-bulk-converter-14b54561
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_e7ZXWU_IbA55Aum0ErXQV

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 idn-punycode-bulk-converter-14b54561
```

Example prompt: Convert all of these internationalized domain names to punycode for me and flag any homograph issues: münchen.de, 例え.jp, académie.fr, мир.рф, طريق.com, bücher.de, ñoño.es, 日本語.jp, αβγδ.gr, кириллица.рu — process them all at once.

## When to prefer this

Choose this endpoint when you have 2–20 domain names that all need IDN/punycode conversion in the same workflow, especially when homograph detection is needed across the set. It is more cost-efficient and faster than calling the single /dns/idn endpoint repeatedly. Prefer it in security pipelines (phishing domain analysis), DNS provisioning workflows for international domains, or brand-protection enrichment tasks where a list of suspect or multilingual domains must be processed together.

## Known failure modes

- Invalid or malformed domain name returns per-item error with description
- Input list exceeds 20 domains — request rejected or truncated
- Missing required 'input' parameter returns 400-level error
- Domain with unsupported TLD or character set may return partial result or per-item error
- Payment failure (x402) results in 402 response before processing begins
- Network timeout if upstream DNS resolution is slow for many items

## How this service works

Bulk idn punycode convert: 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 /dns/idn endpoint (IDN / punycode converter and homograph check). Batch enrichment for agents that hold a list. $0.01 per batch.

## Output

An ordered array of results matching the input domain list, each containing the original input, its punycode form, the decoded unicode form, a homograph flag/warning, and a per-item error field if conversion failed. A top-level failure count is also returned indicating how many items errored.

## 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/idn-punycode-bulk-converter-14b54561/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)
