# address-extract

> address-extract is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Extracts postal address candidates from a webpage, including structured schema.org PostalAddress data, street address patterns (US/CA/UK/EU), and Google Maps links.

## Facts

- Endpoint: GET https://intel.rallylive.ca/site/addresses
- Price: $0.01/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-030910da
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ntdwyvEVfq2mWy4tZklfl

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-030910da
```

Example prompt: Can you pull all the postal addresses and office locations from this page for me: https://example.com/contact — I need the street addresses, postal codes, and any Google Maps links you find.

## When to prefer this

Use this endpoint when you need to extract physical mailing or office addresses from a specific webpage, particularly for business contact pages, location directories, or any page likely to contain schema.org PostalAddress markup or recognizable street address patterns. Prefer it over general-purpose scrapers when the goal is specifically address/location data including Google Maps links, supporting US, Canadian, UK, and EU address formats.

## Known failure modes

- Page has no addresses — returns empty results
- URL is inaccessible or returns non-200 status — request fails
- Page is JavaScript-rendered and addresses are not in static HTML — may miss dynamic content
- Addresses in non-US/CA/UK/EU formats may not be recognized by pattern matching
- Rate limiting or payment failure — x402 payment required

## How this service works

Postal address candidates from a page: lines that look like street addresses (number + street + city/postal code patterns for US/CA/UK/EU), schema.org PostalAddress data when present, and Google Maps links. Office and location discovery. $0.01 per page.

## Output

A list of postal address candidates found on the page, including: raw text lines matching street address patterns (number + street + city/postal code) for US, Canada, UK, and EU formats; structured schema.org PostalAddress objects when embedded in the page; and any Google Maps URLs found linking to locations.

## 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-030910da/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)
