# quote-extract

> quote-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 quotations (blockquotes, <q> elements, and quoted passages of 8+ words) from a web page along with an attribution guess from surrounding text

## Facts

- Endpoint: GET https://intel.rallylive.ca/page/quotes
- 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/quote-extract-19904fe0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-aM8K050Bu9k-PYSVSg5W

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 quote-extract-19904fe0
```

Example prompt: Can you pull out all the quotes and attributed statements from this article — https://example.com/some-article — including any blockquotes or passages in smart quotes, and tell me who said them?

## When to prefer this

Choose this endpoint when you need to systematically extract quotations and attributed statements from a specific web page for research, journalism, content auditing, or competitive intelligence purposes. It is especially useful when a page contains blockquotes, <q> HTML elements, or quoted passages in smart or straight quotes of 8 or more words. Prefer it over general-purpose scrapers when you specifically want quote-focused extraction with attribution hints rather than full-page text or structured data.

## Known failure modes

- Page is behind a login or paywall — quotes cannot be extracted
- Page has no quotations matching the criteria (blockquotes, <q> tags, or 8+ word quoted passages)
- URL is unreachable or returns a non-200 status
- Page is JavaScript-rendered and content is not accessible via static fetch
- Attribution guess may be incorrect or missing if surrounding text provides no clear speaker
- Smart quote detection may miss passages if encoding is non-standard

## How this service works

Quotation extraction: blockquotes, <q> elements and quoted passages (in “smart quotes” or straight quotes, 8+ words) from a page, with an attribution guess from the surrounding text. Quote mining for research and content. $0.01 per page.

## Output

A list of extracted quotations from the target page, each with the quote text, its type (blockquote, <q> element, or smart/straight-quoted passage), and a best-guess attribution derived from surrounding context (e.g. speaker name or source mentioned nearby).

## 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/quote-extract-19904fe0/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)
