# Delx Unslugify Lite

> Delx Unslugify 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 URL/path slugs (e.g. 'my-product-name') into Title Case display labels (e.g. 'My Product Name')

## Facts

- Endpoint: POST https://api.delx.ai/api/v1/x402/unslugify-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-unslugify-lite-d4e7b4a5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wO5-cHb4gpGWkGMlQzLsP

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-unslugify-lite-d4e7b4a5 -d '<json body>'
```

Example prompt: Convert the slug 'new-arrivals-summer-collection' into a proper Title Case display label for the navigation menu.

## When to prefer this

Choose this endpoint when you need a lightweight, instant, no-setup conversion of URL slugs or kebab-case strings to human-readable Title Case labels — especially in agentic pipelines where you want local-only processing with no data retention and a fixed $0.001 cost per call. Prefer it over custom string manipulation when you want a reliable, consistent result without writing regex or casing logic yourself.

## Known failure modes

- Empty or missing 'text' field returns an error or empty result
- Non-slug input (already title case, special characters) may produce unexpected casing
- Payment failure via x402 prevents processing
- Very long slugs may be truncated or rejected

## How this service works

Turn slugs into Title Case words. Call when you reverse product/path slugs into display labels. Returns title words from slug 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 the input slug converted to Title Case words, with hyphens and underscores replaced by spaces and each word capitalized — suitable for direct use as a UI label or display heading.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "text": "Agent Micro Utils",
  "schema": "delx/util-unslugify-lite/v1"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/delx-unslugify-lite-d4e7b4a5/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)
