# Tempest AI Content Engine — Press Release Dispatcher

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

Generates and dispatches AI-written press releases given a company name, announcement content, optional date, and contact info

## Facts

- Endpoint: POST https://tumpest.vercel.app/api/dispatch
- 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-content-engine-press-release-dispatcher-160a8528
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lsJjp4TTwOSsT79affS4D

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

Example prompt: Write a professional press release for Acme Corp announcing our Series B funding round — we raised $20M led by Sequoia. Use today's date and set the contact info to press@acmecorp.com.

## When to prefer this

Use this endpoint when you need to quickly generate a professional press release from raw announcement text and company details, especially in automated PR or content workflows where paying per-call with USDC is acceptable. Prefer this over general-purpose LLM calls when you want a dedicated press release format with company and contact metadata baked in.

## Known failure modes

- Missing required 'company' field returns validation error
- Missing required 'announcement' field returns validation error
- Payment not provided or insufficient USDC results in 402 Payment Required
- Malformed JSON body returns 400 Bad Request
- Service outage on Vercel host returns 503
- Empty or very short announcement may produce low-quality or incomplete output

## 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, likely as structured text or fields derived from the announcement input.

## 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-160a8528/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)
