# Tempest AI Content Engine — Slug Generator

> Tempest AI Content Engine — Slug Generator is a paid API for AI agents from tempest-2zzx.vercel.app, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-14).

Converts a text string into a URL-safe slug (lowercased, hyphenated) using AI-powered processing

## Facts

- Endpoint: POST https://tempest-2zzx.vercel.app/api/slug
- Price: $0.15/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-slug-generator-bd65c664
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tI57LKpOVHNiWDPl8rT8y

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-slug-generator-bd65c664 -d '<json body>'
```

Example prompt: Can you slugify this title for me — 'Top 10 AI Tools for Content Creators in 2025' — so I can use it as a URL path?

## When to prefer this

Choose this endpoint when you need a quick, AI-normalized slug conversion within the Tempest content pipeline and are already using the x402 USDC payment protocol. It integrates cleanly with other Tempest endpoints for end-to-end content workflows. For high-volume batch slug generation without per-call payment overhead, a self-hosted slugify library may be more cost-effective.

## Known failure modes

- Missing required 'text' field returns a validation error
- Empty string input may return an empty or invalid slug
- Very long input strings may be truncated or cause processing delays
- Non-UTF-8 or malformed characters may be stripped or cause errors
- Payment failure (insufficient USDC) results in 402 response before processing

## 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 generated URL slug — a lowercased, hyphenated, URL-safe version of the input text with special characters and spaces normalized.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text"
 ],
 "properties": {
  "text": {
   "type": "string",
   "description": "Text to slugify"
  }
 }
}
```

## 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-slug-generator-bd65c664/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)
