# Delx Kebab To Camel

> Delx Kebab To Camel 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 kebab-case strings (e.g. 'my-variable-name') into lowerCamelCase (e.g. 'myVariableName') locally without network calls or data retention.

## Facts

- Endpoint: POST https://api.delx.ai/api/v1/x402/kebab-to-camel
- 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-to-camel-cd7c3cf5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jjQg4f3N6dZw5J7Um4JWl

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-to-camel-cd7c3cf5 -d '<json body>'
```

Example prompt: Convert 'user-profile-settings' from kebab-case to lowerCamelCase so I can use it as a JavaScript property name.

## When to prefer this

Choose this endpoint when you need a fast, cheap ($0.001 USDC), stateless kebab-to-camelCase conversion with no data retention — ideal for agentic pipelines that process URL segments, CLI flags, or CSS class names into JavaScript-compatible property names without standing up local string utilities.

## Known failure modes

- Empty or missing 'text' field returns an error
- Input with no hyphens is returned unchanged or as a single lowercase word
- Very long strings may behave unexpectedly depending on service limits
- Non-string input types may cause a validation error

## How this service works

Convert kebab-case identifiers to lowerCamelCase. Call when you map URL segments into JS property names. Returns lowerCamelCase 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 reformatted as a lowerCamelCase string, with hyphens removed and each subsequent word capitalized (e.g. 'my-kebab-string' → 'myKebabString'). No metadata, no external calls, result is local computation only.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "text": "helloWorldApi",
  "schema": "delx/util-kebab-to-camel/v1"
 }
}
```

## More

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