# Delx Kebab Case

> Delx Kebab Case 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 text or identifiers to kebab-case slugs suitable for URL paths, CSS classes, or route segments.

## Facts

- Endpoint: POST https://api.delx.ai/api/v1/x402/kebab-case
- 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-kebab-case-b99fd0dd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7wmW-o2KCOO4_e52OmfnW

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-kebab-case-b99fd0dd -d '<json body>'
```

Example prompt: Convert 'My New Blog Post Title' to a kebab-case slug I can use as a URL path segment.

## When to prefer this

Choose this endpoint when you need a fast, stateless, local conversion of any free-text string to kebab-case with no external dependencies, network lookups, or data retention — ideal for agents building URLs, CSS classes, or route slugs programmatically at low cost ($0.001 USDC per call).

## Known failure modes

- Empty or missing text field returns an error
- Extremely long strings may be truncated or rejected
- Non-string input types may cause a validation error
- Payment failure (insufficient USDC balance) blocks the call

## How this service works

Convert free text or identifiers to kebab-case slugs. Call when you need URL path segments, CSS class names, or route slugs. Returns kebab-case text 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 text converted to lowercase kebab-case, with spaces and special characters replaced by hyphens, suitable for use in URL paths, CSS class names, or route identifiers.

## Request schema (JSON Schema)

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

## More

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