# Tempest AI Slug Generator

> Tempest AI Slug Generator is a paid API for AI agents from tumpest.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://tumpest.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-bd1e1c14
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Y0bnfdeRcnazAjmpIa3PX

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

Example prompt: Can you slugify this text for me: 'Top 10 Reasons Why AI Content Tools Are Changing the Publishing Industry in 2025'?

## When to prefer this

Choose this endpoint when you need a reliable, AI-powered slugification of arbitrary text, especially when handling edge cases like special characters, unicode, or unusual phrasing that simple regex-based slugifiers may mangle. Useful in content pipelines, CMS integrations, or SEO workflows where clean URL generation matters.

## Known failure modes

- Missing required 'text' field returns validation error
- Empty string input may return empty or error response
- Payment failure (402) if USDC not provided or insufficient balance
- Very long text strings may be truncated or cause timeout
- Special characters or non-Latin scripts may produce unexpected slug 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 URL-friendly slug generated from the input text — typically lowercase, hyphen-separated, with special characters stripped.

## 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-bd1e1c14/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)
