# Extract Definition Lists as Text

> Extract Definition Lists as Text is a paid API for AI agents from page.intel.rallylive.ca, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-18).

Fetches a web page and extracts all definition list (<dl>) elements, returning them as plain text lines with a count.

## Facts

- Endpoint: GET https://page.intel.rallylive.ca/page/definition-lists/text
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-18
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/extract-definition-lists-as-text-88c357cf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BwUMcbn0V6mgXYKq_Isog

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 extract-definition-lists-as-text-88c357cf
```

Example prompt: Can you pull all the definition lists from this page — https://example.com/glossary — and return them as plain text so I can see what terms and descriptions are on it?

## When to prefer this

Choose this endpoint when you need only the definition list (<dl>) elements from a page in plain text, without needing a full browser, JavaScript rendering, or other element types. Ideal for pipelines that process glossaries, term-definition pairs, or structured HTML definition content from static or server-rendered pages at low cost ($0.01/call).

## Known failure modes

- Page is unreachable or returns non-200 HTTP status — empty result or error response
- Page contains no <dl> definition list elements — returns zero count with empty text
- Page blocks automated fetching (robots.txt, anti-bot measures) — may return incomplete or error response
- Invalid or malformed URL input — request fails with error
- Page loads content dynamically via JavaScript — definition lists rendered client-side may not be captured

## How this service works

Extract the page's definition lists as text: fetches the URL, pulls every definition lists element and returns them as plain lines, with a count. Structured, one-element-type extraction for agents and pipelines; no browser needed. $0.01 per page.

## Output

A plain-text listing of every definition list element found on the page, with each term and description on its own line, along with a count of how many definition list elements were extracted.

## 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/extract-definition-lists-as-text-88c357cf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from page.intel.rallylive.ca](https://www.zero.xyz/host/page.intel.rallylive.ca/llms.txt)
