# x402.outpimp.com Slug Generator

> x402.outpimp.com Slug Generator is a paid API for AI agents from x402.outpimp.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Converts any text into a clean, URL-safe slug (lowercase, hyphen-separated, unicode-aware) with correct handling of punctuation and accented characters.

## Facts

- Endpoint: POST https://x402.outpimp.com/generateSlug
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-outpimp-com-slug-generator-ac4c4943
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-p88IbxZ178jMBMj7o7W2

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 x402-outpimp-com-slug-generator-ac4c4943 -d '<json body>'
```

Example prompt: Can you turn the title 'Héllo Wörld! A Guide to Résumé Writing (2024)' into a clean URL slug for me?

## When to prefer this

Choose this endpoint when you need robust, unicode-aware slugification that correctly handles accented characters, international text, and complex punctuation — cases where a naive regex or simple toLowerCase+replace approach would produce incorrect or broken slugs. Ideal for agents building CMS content, generating SEO-friendly URLs, or creating database-safe identifiers from arbitrary user-supplied text.

## Known failure modes

- 400 Bad Request if 'text' field is missing from the request body
- 400 Bad Request if 'text' field is present but empty string
- Payment failure if USDC balance is insufficient (x402 protocol error)
- Unexpected output if input is extremely long or contains unusual control characters

## How this service works

Slug generator API. Converts any text into a clean, URL-safe slug (lowercase, hyphen-separated, unicode-aware), handling punctuation and accented-character edge cases a naive regex misses.

## Output

Returns a slugified string derived from the input text — all lowercase, spaces and special characters replaced with hyphens, accented/unicode characters transliterated or stripped, consecutive hyphens collapsed, and leading/trailing hyphens removed. Returns HTTP 400 if the text field is missing or empty.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "text": {
   "type": "string",
   "description": "The text to slugify."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-outpimp-com-slug-generator-ac4c4943/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.outpimp.com](https://www.zero.xyz/host/x402.outpimp.com/llms.txt)
