# Delx Case Camel

> Delx Case 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 an input string to lowerCamelCase format for use in JSON property naming and code generation

## Facts

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

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-case-camel-db393390 -d '<json body>'
```

Example prompt: Convert 'user first name' to lowerCamelCase so I can use it as a JSON property name.

## When to prefer this

Choose this endpoint when you need a fast, stateless, deterministic lowerCamelCase conversion without shipping a string-manipulation library or adding runtime dependencies. Ideal for agent preflight steps, code-generation pipelines, or JSON schema normalization where consistency and zero side effects are required.

## Known failure modes

- Empty or missing 'text' field returns an error response
- Non-string input types may cause a validation error
- Very long input strings may be truncated or rejected
- Network or payment authorization failures return HTTP 402 or 5xx errors

## How this service works

Convert text to lowerCamelCase for JSON property naming — first-party local utility for agent preflight and proven micro-utils expansion. Returns deterministic machine-readable JSON for $0.001 USDC via x402 on Base. Execution is first-party, local-only, stateless, and memory-only with no paid upstream, no input retention, no web search, no live RPC, and no mediagen. Results are advisory; the caller owns authorization, budgets, and production controls. Sibling of Delx routes that already convert…

## Output

A deterministic JSON object containing the lowerCamelCase version of the input text, suitable for use as a JSON property key or programming language identifier.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "camel": "helloWorldApi",
  "length": 13,
  "schema": "delx/util-case-camel/v1"
 }
}
```

## More

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