# page-images

> page-images 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).

Returns a full inventory of all images on a web page, including resolved URLs, alt text, dimensions, lazy-loading status, and counts of missing or empty alt attributes for accessibility and SEO auditing.

## Facts

- Endpoint: GET https://intel.rallylive.ca/site/images
- 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/page-images-d7549f73
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fkmUF6qEtFwrRuqCzBI52

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 page-images-d7549f73
```

Example prompt: Can you pull up a full inventory of every image on https://example.com, including their alt text, dimensions, and whether any are missing or have empty alt attributes?

## When to prefer this

Choose this endpoint when you need a structured, machine-readable inventory of all images on a specific page for accessibility auditing, SEO analysis, or content inspection. It is ideal when you need both raw image metadata (URL, dimensions) and accessibility signals (alt text presence) in a single call for $0.01. Prefer this over generic web scrapers when alt text audit counts and lazy-loading flags are specifically needed.

## Known failure modes

- Target page is unreachable or returns a non-200 status, resulting in no image data
- Page requires JavaScript rendering to load images, which may not be captured by a static fetch
- Images injected dynamically via JavaScript after page load may not appear in results
- Pages with bot-blocking or CAPTCHA may block the fetch entirely
- Very large pages with hundreds of images may result in slower response times
- Malformed or relative image URLs may not resolve correctly

## How this service works

Image inventory for a page: every image with resolved URL, alt text, declared width/height and lazy-loading, plus counts of missing or empty alt attributes (an accessibility and SEO issue). $0.01 per page.

## Output

Returns a structured list of every image found on the target page, each with its resolved URL, alt text (if any), declared width and height, and lazy-loading attribute status. Also includes aggregate counts of images with missing alt attributes and images with empty alt attributes, enabling quick accessibility and SEO triage.

## 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/page-images-d7549f73/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)
