# Tempest FAQ Generator

> Tempest FAQ Generator is a paid API for AI agents from tempest-2zzx.vercel.app, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-14).

Generates a list of frequently asked questions (FAQs) from provided content using AI

## Facts

- Endpoint: POST https://tempest-2zzx.vercel.app/api/faq
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tempest-faq-generator-aca1e499
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-XtaGUx9M2ubdM5VHNAux

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 tempest-faq-generator-aca1e499 -d '<json body>'
```

Example prompt: Take this product description and generate 8 FAQs from it: 'Tempest is a pay-per-call AI content platform with 25 endpoints for composing, rewriting, and translating content — charged in USDC per request.'

## When to prefer this

Choose this endpoint when you need to automatically derive FAQs from an existing body of text — such as a product description, blog post, knowledge base article, or support document — and want structured question-and-answer output without writing them manually. It is ideal for content teams, documentation pipelines, and landing page builders that need FAQ sections at scale.

## Known failure modes

- Missing required 'content' field returns a validation error
- Empty or very short content may produce low-quality or irrelevant FAQs
- Very large content inputs may be truncated or cause timeout
- Invalid 'count' type (non-numeric) may cause a schema validation error
- Payment failure in USDC may block the request from completing

## How this service works

Compose, rewrite, translate, and refine content at scale. 25 AI-powered endpoints. Pay-per-call with USDC on Tempo.

## Output

Returns a JSON object with a success boolean and a data object containing the AI-generated FAQ list derived from the input content, typically as an array of question-and-answer pairs or question strings.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "content"
 ],
 "properties": {
  "count": {
   "type": "number",
   "description": "Number of FAQs"
  },
  "content": {
   "type": "string",
   "description": "Content to generate FAQs from"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

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