# Tempest AI Article Generator

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

Generates full-length articles on a given topic using AI, with optional style, SEO keywords, and word count targeting

## Facts

- Endpoint: POST https://tempest-2zzx.vercel.app/api/article
- 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/tempest-ai-article-generator-0a032d95
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_syZ9mFYIY2_tP7og_5hSg

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-ai-article-generator-0a032d95 -d '<json body>'
```

Example prompt: Write me a 1200-word article about the future of renewable energy in a conversational style, and include the keywords 'solar power', 'wind energy', and 'carbon footprint'.

## When to prefer this

Choose this endpoint when you need to generate a complete, structured article from a topic description and optional parameters like keywords and style. It is best suited for SEO content pipelines, automated blogging, or any workflow requiring full-length written text output at scale. Prefer it over summarization or rewrite endpoints when starting from scratch with no source document.

## Known failure modes

- Missing required 'topic' field returns a 400 validation error
- Extremely long or vague topics may produce off-target content
- word_count parameter may not be exactly matched by the AI output
- Payment failure (insufficient USDC) prevents API access
- Overly broad style instructions may yield inconsistent tone
- Rate limiting or cold-start on Vercel deployment may cause timeout

## 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 article text, likely including the article body and possibly metadata such as title or word count.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "topic"
 ],
 "properties": {
  "style": {
   "type": "string",
   "description": "Writing style"
  },
  "topic": {
   "type": "string",
   "description": "Article topic"
  },
  "keywords": {
   "type": "array",
   "description": "SEO keywords"
  },
  "word_count": {
   "type": "number",
   "description": "Target word count"
  }
 }
}
```

## 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-ai-article-generator-0a032d95/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)
