# Tempest AI Slug Generator

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

Converts arbitrary text into a URL-friendly slug using AI

## Facts

- Endpoint: POST https://trempest.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-slug-generator-4a2bfcae
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qvOdedTPo4jqxSTHbSEU9

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

Example prompt: Can you slugify this title for me: 'The Ultimate Guide to Brewing Coffee at Home'?

## When to prefer this

Choose this endpoint when you need AI-assisted slug generation that can handle edge cases like special characters, multilingual text, or complex phrases that simple regex-based slugifiers handle poorly. Useful in content pipelines where titles are unpredictable or contain unusual punctuation, emojis, or non-ASCII characters.

## Known failure modes

- Missing required 'text' field returns an error response
- Empty string input may return an empty or invalid slug
- Very long input strings may be truncated or cause unexpected output
- Non-UTF8 or binary input may result in malformed slugs
- Payment failure via x402 protocol returns 402 status 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 derived from the input text — lowercased, hyphenated, and stripped of special characters.

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