# Arch Tools — Transform Text

> Arch Tools — Transform Text is a paid API for AI agents from archtools.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Transforms input text according to a specified mode (e.g. uppercase, summarize, translate, slug, etc.)

## Facts

- Endpoint: POST https://archtools.dev/v1/tools/transform-text
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/arch-tools-transform-text-2ee591a4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iwyDpmgRM1ZeJBqEdFtTP

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 arch-tools-transform-text-2ee591a4 -d '<json body>'
```

Example prompt: Transform this text using the 'slug' mode: 'Hello World! This is my Blog Post Title'

## When to prefer this

Use this endpoint when you need a quick, pay-per-use programmatic text transformation without setting up your own NLP pipeline. Ideal for agents that need to reformat strings on the fly — such as slugifying titles, normalizing casing, or applying named text transformations — without spinning up heavy infrastructure. Prefer this over general-purpose LLM calls when the transformation is deterministic and repeatable.

## Known failure modes

- Missing required 'mode' or 'text' fields returns a 400 validation error
- Unsupported or unrecognized transformation mode may return an error or unexpected output
- Very long text inputs may be truncated or rejected
- Payment failure (insufficient USDC balance) returns a 402 Payment Required response

## How this service works

Transform text (10 modes: slug, camel, base64...). Pay per call with USDC (x402) or credits - archtools.dev

## Output

A JSON object containing the transformed version of the input text as processed by the specified transformation mode.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "mode": {
   "enum": [
    "slug",
    "camel",
    "snake",
    "pascal",
    "kebab",
    "upper",
    "lower",
    "title",
    "base64_encode",
    "base64_decode"
   ],
   "type": "string",
   "description": "Transformation mode"
  },
  "text": {
   "type": "string",
   "description": "Text to transform"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/arch-tools-transform-text-2ee591a4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from archtools.dev](https://www.zero.xyz/host/archtools.dev/llms.txt)
