# ScravFly FAQ Generator

> ScravFly FAQ Generator is a paid API for AI agents from scravfly.vercel.app, paid per call via x402, $0.3/call, status unknown (last checked 2026-09-13).

Generates a list of frequently asked questions (FAQ) from provided content text

## Facts

- Endpoint: POST https://scravfly.vercel.app/api/content/faq
- Price: $0.3/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scravfly-faq-generator-ab978419
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AzQ-Q89SEcw9gVvuxFYKP

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 scravfly-faq-generator-ab978419 -d '<json body>'
```

Example prompt: Can you generate 10 frequently asked questions with answers from this product description: 'Our SaaS platform helps teams manage projects with real-time collaboration, task tracking, and automated reporting'?

## When to prefer this

Choose this endpoint when you need to automatically generate structured FAQ content from existing text, such as product descriptions, blog posts, documentation, or support articles. It is ideal for content automation pipelines where FAQ sections need to be created at scale without manual effort. Prefer this over general-purpose LLM calls if you want a pay-per-use, no-setup FAQ generation service with predictable pricing.

## Known failure modes

- Missing required 'content' field returns an error response with success: false
- Empty or very short content may produce low-quality or generic FAQs
- Content in unsupported languages may yield unpredictable results
- Requesting a very high count of FAQs relative to content length may produce repetitive items
- Network or upstream AI service errors may cause intermittent failures

## How this service works

69 endpoints for data, content generation, and web scraping. Pay per request via x402 on Base chain.

## Output

Returns a JSON object with a success boolean and a data object containing the generated FAQ items (questions and answers) derived from the input content.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "content"
 ],
 "properties": {
  "count": {
   "type": "number",
   "description": "count"
  },
  "content": {
   "type": "string",
   "description": "content"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "success"
 ],
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scravfly-faq-generator-ab978419/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scravfly.vercel.app](https://www.zero.xyz/host/scravfly.vercel.app/llms.txt)
