# Tempest AI Content Engine — Press Release Dispatcher

> Tempest AI Content Engine — Press Release Dispatcher is a paid API for AI agents from trempest.vercel.app, paid per call via x402, $0.3/call, status unknown (last checked 2026-09-14).

Generates a formatted press release from a company name and announcement content, dispatched through Tempest's AI content engine

## Facts

- Endpoint: POST https://trempest.vercel.app/api/dispatch
- Price: $0.3/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tempest-ai-content-engine-press-release-dispatcher-36c47908
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_y1Hb0MeQ5VCkDoNd2lq4n

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-content-engine-press-release-dispatcher-36c47908 -d '<json body>'
```

Example prompt: Write a press release for Acme Corp announcing our Series B funding round of $50M, set for release on June 10, 2025 — contact info is press@acmecorp.com. Here's the announcement: 'Acme Corp today announced it has closed a $50 million Series B led by Sequoia Capital to accelerate its AI-powered logistics platform.'

## When to prefer this

Choose this endpoint when you need to quickly generate a professional press release from minimal structured inputs (company name + announcement text), especially in agentic workflows where PR content must be composed at scale or on-demand without manual writing. Prefer it over generic LLM prompts when you want a pay-per-call, purpose-built PR generation pipeline with consistent output structure.

## Known failure modes

- Missing required fields (company or announcement) returns a validation error
- Empty or extremely short announcement content may yield low-quality output
- Network or Vercel cold-start latency may cause timeout on first call
- Payment failure (insufficient USDC balance) blocks the request before processing
- Malformed JSON body returns a 400-level error

## 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 press release content, formatted and ready for distribution or further editing.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "company",
  "announcement"
 ],
 "properties": {
  "date": {
   "type": "string",
   "description": "Release date"
  },
  "company": {
   "type": "string",
   "description": "Company name"
  },
  "contact": {
   "type": "string",
   "description": "Contact info"
  },
  "announcement": {
   "type": "string",
   "description": "Announcement content"
  }
 }
}
```

## 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-content-engine-press-release-dispatcher-36c47908/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from trempest.vercel.app](https://www.zero.xyz/host/trempest.vercel.app/llms.txt)
