# FAQ Generator from Text or Topic

> FAQ Generator from Text or Topic is a paid API for AI agents from pagos.andreax.dev, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Generates FAQ entries (questions and answers) from a given text or topic, useful for documentation and support content.

## Facts

- Endpoint: GET https://pagos.andreax.dev/api/taller/peaje/preguntas
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/faq-generator-from-text-or-topic-9cbc5365
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_t3IzBvUFAexPPnD7NLlnm

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-generator-from-text-or-topic-9cbc5365
```

Example prompt: Can you generate a FAQ with questions and answers from this text: 'Our product allows users to track shipments in real time, receive alerts, and manage delivery preferences from a single dashboard.'?

## When to prefer this

Choose this endpoint when you need to automatically generate structured FAQ content from unstructured text or a topic description, especially for documentation, support pages, or onboarding materials. It is well-suited for content pipelines that need Q&A pairs at low cost per call without requiring a full LLM orchestration setup.

## Known failure modes

- Missing 'input' query parameter returns an error
- Empty or extremely short input may produce low-quality or incomplete FAQ pairs
- Very broad or vague topics may generate generic, unhelpful questions
- Input text that is too long may be truncated or cause a processing error
- Non-text or binary input will fail to parse

## How this service works

Genera FAQ (preguntas + respuestas) de un texto/tema. Para docs/soporte. input=texto o tema.

## Output

A structured set of FAQ entries, each containing a question and its corresponding answer, derived from the provided text or topic. Useful for embedding into documentation, help centers, or support chatbots.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "input"
     ],
     "properties": {
      "input": {
       "type": "string",
       "description": "texto/tema"
      }
     }
    }
   },
   "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-generator-from-text-or-topic-9cbc5365/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pagos.andreax.dev](https://www.zero.xyz/host/pagos.andreax.dev/llms.txt)
