# hreflang-map-bulk

> hreflang-map-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).

Fetches hreflang alternate-language link maps for up to 20 URLs in a single concurrent batch call, returning results in input order with per-item error reporting.

## Facts

- Endpoint: GET https://intel.rallylive.ca/bulk/site/hreflang
- 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/hreflang-map-bulk-6a388517
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5d0CvoTkcd4DgM_USYLrm

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 hreflang-map-bulk-6a388517
```

Example prompt: Can you pull the hreflang alternate-language maps for these 15 pages on our site all at once and tell me which locales each one declares, plus flag any that failed?

## When to prefer this

Use this endpoint when you have a list of 2–20 URLs and need hreflang maps for all of them efficiently, rather than making multiple serial calls to the single-URL /site/hreflang endpoint. Ideal for SEO audits, content pipeline enrichment, or migration QA where you need per-item error reporting and guaranteed result ordering. Prefer it over the single endpoint whenever you hold a pre-built URL list and want to minimize round-trips.

## Known failure modes

- URL unreachable or returning non-200 status — per-item error field set, counted in failure total
- Page has no hreflang tags — empty map returned for that item
- Batch exceeds 20 URL limit — request rejected
- Malformed URL in input — per-item error for that entry
- Network timeout on a specific URL — per-item error, other results still returned
- Payment not completed — 402 response before processing begins

## How this service works

Bulk hreflang map: up to 20 urls 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 /site/hreflang endpoint (hreflang map). Batch enrichment for agents that hold a list. $0.01 per batch.

## Output

An ordered array of results matching the input URL list. Each item contains the hreflang map for that URL (language-region codes mapped to their alternate URLs, equivalent to the single /site/hreflang endpoint output), a per-item error field indicating any fetch or parse failure for that URL, and a top-level count of how many items failed 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/hreflang-map-bulk-6a388517/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)
