# Tempest AI Tagline Generator

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

Generates short, punchy taglines for a given topic, with optional style and platform targeting

## Facts

- Endpoint: POST https://tempost.vercel.app/api/tagline
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tempest-ai-tagline-generator-7c3ee4ca
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RwWlq1lpe1Hpoj69L9vtA

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-tagline-generator-7c3ee4ca -d '<json body>'
```

Example prompt: Can you generate 5 punchy taglines for my AI-powered fitness app called 'IronMind' in a bold, motivational style for Instagram?

## When to prefer this

Choose this endpoint when you need short, punchy marketing taglines or slogans for a specific topic, brand, or product — especially when you want platform-aware copy (e.g., optimized for Twitter, LinkedIn, or Instagram) or need multiple style variants in a single call. Prefer this over general-purpose LLM prompting when you want a dedicated, pay-per-call micro-service for tagline generation with predictable output structure.

## Known failure modes

- Missing required 'topic' field returns a validation error
- Overly broad or empty topic may yield generic or low-quality taglines
- Very high 'count' values may produce repetitive output
- Unsupported style or platform strings may be ignored or cause unexpected output
- Payment failure (insufficient USDC) returns a 402 error before generation

## 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 generated tagline(s) for the requested topic, styled and platform-targeted as specified.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "topic"
 ],
 "properties": {
  "count": {
   "type": "number",
   "description": "Number of headlines"
  },
  "style": {
   "type": "string",
   "description": "Headline style"
  },
  "topic": {
   "type": "string",
   "description": "Topic"
  },
  "platform": {
   "type": "string",
   "description": "Target platform"
  }
 }
}
```

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