# Tempest FAQ Generator

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

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

## Facts

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

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-ab4bb6b6 -d '<json body>'
```

Example prompt: Generate 8 FAQs from this content: 'Our SaaS platform helps small businesses automate invoicing, track payments, and manage expenses in one dashboard. It integrates with QuickBooks, Stripe, and PayPal.'

## When to prefer this

Use this endpoint when you need to programmatically generate FAQ sections from existing content, such as blog posts, product descriptions, documentation, or support articles. Ideal for content teams automating FAQ creation at scale, or developers building CMS pipelines that auto-generate FAQ schema markup. Prefer this over manual FAQ writing when you have source content and need structured Q&A output quickly.

## Known failure modes

- Missing required 'content' field returns validation error
- Empty or very short content may produce low-quality or irrelevant FAQs
- Requesting a very high count of FAQs relative to content length may result in repetitive output
- Payment failure returns 402 status if USDC payment is not included
- Service unavailability returns 5xx error from Vercel hosting

## 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 flag and a data object containing the AI-generated FAQ list derived from the provided content, including question-answer pairs based on the input text and the requested count.

## 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-ab4bb6b6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from tumpest.vercel.app](https://www.zero.xyz/host/tumpest.vercel.app/llms.txt)
