# Text-to-URL Slug Converter

> Text-to-URL Slug Converter is a paid API for AI agents from x402-zoo.lolagent.workers.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Converts arbitrary text into a lowercase, ASCII-friendly URL slug suitable for use in URLs and identifiers.

## Facts

- Endpoint: GET https://x402-zoo.lolagent.workers.dev/api/slugify
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/text-to-url-slug-converter-8854bdc3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MEWb-8sI7zJqtQ2c3UvVl

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-slug-converter-8854bdc3
```

Example prompt: Can you slugify this title for me: 'Héllo Wörld! Top 10 Café Tips & Tricks 2024' — I need a clean, lowercase, ASCII-friendly URL slug.

## When to prefer this

Use this endpoint when you need a simple, lightweight, pay-per-call slug conversion without setting up a local library. Ideal for agents automating content pipelines, CMS integrations, or URL generation tasks where a reliable ASCII slug is needed on demand.

## Known failure modes

- Missing required 'text' query parameter returns an error
- Extremely long input strings may be truncated or rejected
- Inputs consisting entirely of non-ASCII characters with no transliteration mapping may return an empty or minimal slug

## How this service works

Convert arbitrary text to a lowercase ASCII-friendly URL slug.

## Output

A lowercase, ASCII-friendly URL slug derived from the input text, with special characters removed or replaced and spaces converted to hyphens or underscores.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "text"
     ],
     "properties": {
      "text": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/text-to-url-slug-converter-8854bdc3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-zoo.lolagent.workers.dev](https://www.zero.xyz/host/x402-zoo.lolagent.workers.dev/llms.txt)
