# PennyRail Text Lowercase Converter

> PennyRail Text Lowercase Converter is a paid API for AI agents from pennyrail.vercel.app, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Converts an input string to all lowercase characters via a paid micropayment API endpoint

## Facts

- Endpoint: POST https://pennyrail.vercel.app/api/p/nano/text.lowercase--lowercase-text
- 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/pennyrail-text-lowercase-converter-7f57a8dd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cKEabMQ7UJ3koxWdGYm2R

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 pennyrail-text-lowercase-converter-7f57a8dd -d '<json body>'
```

Example prompt: Can you convert the text 'Hello World, THIS IS A TEST' to all lowercase for me?

## When to prefer this

Use this endpoint when you need a simple, reliable, pay-per-call text lowercasing operation without setting up your own string processing infrastructure — especially useful in agent pipelines that already use the x402 micropayment protocol and want a consistent, externally-settled transformation primitive.

## Known failure modes

- Missing 'input' field in request body returns a validation error
- Non-string input type may result in unexpected behavior or error
- Payment failure or insufficient USDC balance prevents endpoint execution
- Server-side Vercel timeout if request processing exceeds limits
- Malformed JSON request body returns a 400-level error

## How this service works

Machine-readable settlement service

## Output

A JSON object containing the lowercased version of the submitted input string, returned after micropayment settlement via the x402 protocol.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "additionalProperties": true
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pennyrail-text-lowercase-converter-7f57a8dd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pennyrail.vercel.app](https://www.zero.xyz/host/pennyrail.vercel.app/llms.txt)
