# Text to URL-Safe Slug Converter

> Text to URL-Safe Slug Converter is a paid API for AI agents from x402render-u5vwpxpyua-uc.a.run.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Converts an arbitrary text string into a URL-safe slug (lowercase, hyphenated, special-character-free)

## Facts

- Endpoint: POST https://x402render-u5vwpxpyua-uc.a.run.app/slugify
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/text-to-url-safe-slug-converter-79fa7415
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Nc0a3Kdn5GwpfljV9BxL_

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 text-to-url-safe-slug-converter-79fa7415 -d '<json body>'
```

Example prompt: Can you slugify the text 'Hello World! This is My Blog Post Title #1' so I can use it as a URL path?

## When to prefer this

Choose this endpoint when you need a quick, paid-per-call slugification without setting up your own text-processing library. Useful in agent pipelines generating URLs, permalinks, or identifiers dynamically from user-supplied text. The $0.01 USDC per-call pricing via x402 makes it suitable for low-volume automated workflows where simplicity and no infrastructure overhead matter.

## Known failure modes

- Empty or missing 'text' field returns an error
- Input containing only special characters may produce an empty or minimal slug
- Very long strings may be truncated or cause unexpected behavior
- Non-ASCII Unicode characters may be transliterated or stripped depending on implementation

## How this service works

Convert text to a URL-safe slug

## Output

Returns a URL-safe slug derived from the input text, with spaces replaced by hyphens, special characters removed, and all characters lowercased, suitable for use in URL paths, permalinks, or identifiers.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "text": {
   "type": "string",
   "description": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/text-to-url-safe-slug-converter-79fa7415/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402render-u5vwpxpyua-uc.a.run.app](https://www.zero.xyz/host/x402render-u5vwpxpyua-uc.a.run.app/llms.txt)
