# Delx Snake To Camel

> Delx Snake 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 snake_case text identifiers to lowerCamelCase format, returning the converted string and its length.

## Facts

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

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-snake-to-camel-4de25345 -d '<json body>'
```

Example prompt: Convert the snake_case identifier 'user_first_name' to lowerCamelCase for me.

## When to prefer this

Choose this endpoint when you need a fast, cheap, stateless conversion of snake_case identifiers to lowerCamelCase — especially when mapping database column names or API fields into JavaScript object keys. Ideal for agent pipelines that process schema metadata or transform field names on the fly without wanting to run local code.

## Known failure modes

- Missing or empty 'text' field returns an error
- Input that is not valid snake_case may produce unexpected output
- Payment failure via x402 prevents processing
- Non-string input types may cause validation errors

## How this service works

Convert snake_case identifiers to lowerCamelCase. Call when you map API/DB columns into JS object keys for an agent payload. Returns lowerCamelCase text plus length 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 lowerCamelCase version of the input snake_case string along with the character length of the converted result. No data is retained server-side.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

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

## More

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