# Delx Slugify Lite

> Delx Slugify Lite is a paid API for AI agents from api.delx.ai, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Converts free-form text into a lowercase, hyphen-separated URL slug suitable for use in paths, product IDs, or identifiers.

## Facts

- Endpoint: POST https://api.delx.ai/api/v1/x402/slugify-lite
- 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/delx-slugify-lite-5a622e7f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UTV_X0Zfy00qCQ5QjZqae

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 delx-slugify-lite-5a622e7f -d '<json body>'
```

Example prompt: Can you slugify 'Fresh Organic Coffee Beans – Premium Roast' so I can use it as a product URL path?

## When to prefer this

Choose this endpoint when you need a quick, cheap ($0.001 USDC), no-setup slug conversion with no API keys or retention. Prefer it over heavier NLP or content APIs when the only need is deterministic text-to-slug transformation. If you need full slug customization options (e.g. custom separators, unicode transliteration, max length), consider the sibling Delx Slugify endpoint which may offer more configuration.

## Known failure modes

- Empty or whitespace-only input may return an empty slug or error
- Text composed entirely of non-alphanumeric characters may produce an empty string
- Payment failure via x402 returns a 402 status before processing
- Overly long input strings may be truncated or rejected depending on server limits

## How this service works

Slugify text to lowercase hyphen form. Call when you need product/path slugs from free titles. Returns slug string for $0.001 USDC via x402 on Base. No network, no keys, no retention; first-party local JSON only. Results are advisory; the caller owns budgets, auth, and production controls.

## Output

Returns a single slug string in lowercase with words joined by hyphens, with special characters and punctuation removed, suitable for use directly in URLs, file paths, or identifiers.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "slug": "hello-delx-agents",
  "schema": "delx/util-slugify-lite/v1"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/delx-slugify-lite-5a622e7f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.delx.ai](https://www.zero.xyz/host/api.delx.ai/llms.txt)
