# address-extract-bulk

> address-extract-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).

Extracts postal address candidates from 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/addresses
- 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/address-extract-bulk-28c1ee7f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qXFjmBlcY4GExuJiaI3fE

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 address-extract-bulk-28c1ee7f
```

Example prompt: I have a list of 15 company websites — can you extract all the postal addresses from each of them in one shot and let me know which ones failed?

## When to prefer this

Use this endpoint when you have a list of URLs (up to 20) and need to extract postal addresses from all of them efficiently in one API call rather than making sequential single-URL calls. It is ideal for lead enrichment workflows, directory building, or any agent task that holds a batch of pages to process. Prefer the single /site/addresses endpoint if you only have one URL and want to avoid any batch overhead or if you need simpler error handling.

## Known failure modes

- URL is unreachable or returns a non-200 status — per-item error field is populated
- Page has no detectable postal address content — empty candidates list returned for that item
- More than 20 URLs submitted — likely rejected or truncated
- Malformed URL in input list — per-item error populated
- Network timeout on a specific URL during concurrent processing — that item returns an error while others succeed

## How this service works

Bulk address extract: 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/addresses endpoint (Postal address candidates from a page). Batch enrichment for agents that hold a list. $0.01 per batch.

## Output

An ordered array of results matching the input URL list, where each item contains the postal address candidates found on that page (same output as the single /site/addresses endpoint) plus a per-item error field indicating any failure. A top-level count of failed items is also returned.

## 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/address-extract-bulk-28c1ee7f/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)
