# DataVault Case Convert

> DataVault Case Convert is a paid API for AI agents from zetavault.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Converts text between different case formats (e.g. camelCase, snake_case, kebab-case, PascalCase, UPPER_CASE)

## Facts

- Endpoint: POST https://zetavault.vercel.app/api/case-convert
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/datavault-case-convert-0b1aec09
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_esB3-L51dwHSCvUf9Pd_-

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 datavault-case-convert-0b1aec09 -d '<json body>'
```

Example prompt: Convert the text 'hello world example string' to camelCase using DataVault's case converter.

## When to prefer this

Use this endpoint when you need a quick, pay-per-call programmatic text case conversion without setting up a local utility library, or when working in an agent pipeline that processes variable names, API field names, or identifiers that need consistent casing.

## Known failure modes

- Missing required 'text' field returns an error response
- Invalid or unsupported format value may return an error or default behavior
- Empty string input may return empty output or an error
- Payment failure (402) if USDC balance is insufficient on Base

## How this service works

54 endpoints spanning local tools, live data feeds, and AI-powered text processing. Pay-per-call with USDC on Base.

## Output

A JSON object with a 'success' boolean and a 'data' object containing the converted text in the requested case format.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text"
 ],
 "properties": {
  "text": {
   "type": "string"
  },
  "format": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/datavault-case-convert-0b1aec09/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from zetavault.vercel.app](https://www.zero.xyz/host/zetavault.vercel.app/llms.txt)
