# FAQ Extract

> FAQ 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 FAQ question/answer pairs from web pages by parsing schema.org FAQPage markup, <details>/<summary> blocks, and question-phrased headings with following paragraphs.

## Facts

- Endpoint: GET https://intel.rallylive.ca/page/faq
- 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/faq-extract-3e2c95b5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FVNDVegXU79K1lu5vZ0NX

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 faq-extract-3e2c95b5
```

Example prompt: Can you extract all the FAQ questions and answers from this support page so I can use them to build a knowledge base?

## When to prefer this

Choose this endpoint when you need to extract structured Q&A pairs from support, product, or documentation pages that use common FAQ patterns. It covers the three most prevalent FAQ formats on the web (schema.org, <details>/<summary>, and question-heading patterns), making it suitable for building knowledge bases, training chatbots, or performing competitive research without writing custom scrapers.

## Known failure modes

- Page has no detectable FAQ content (no FAQPage schema, no <details>/<summary>, no question-phrased headings) — returns empty result
- Target URL is unreachable or returns a non-200 status — request fails
- Page is JavaScript-rendered and content is not present in raw HTML — FAQ blocks may not be detected
- Payment not attached — 402 Payment Required response
- Rate limiting or access restrictions on the target domain — crawl fails

## How this service works

FAQ extraction: question/answer pairs from schema.org FAQPage data, <details>/<summary> blocks, and headings phrased as questions with the paragraph that follows. Build knowledge bases from support and product pages. $0.01 per page.

## Output

A structured list of question/answer pairs extracted from the target page, sourced from schema.org FAQPage JSON-LD, HTML <details>/<summary> elements, and headings that are phrased as questions followed by paragraph content.

## 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/faq-extract-3e2c95b5/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)
