# 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 micro-settlement API endpoint

## Facts

- Endpoint: POST https://pennyrail.vercel.app/api/f/text.lowercase
- 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-2731b5e4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_i6zKACNQpkU-Z_uIR4BFQ

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-2731b5e4 -d '<json body>'
```

Example prompt: Can you lowercase this string for me: 'Hello World, THIS Is A TEST'?

## When to prefer this

Choose this endpoint when you need a simple, reliable, pay-per-use text lowercasing operation without maintaining your own infrastructure, particularly in agentic or micro-payment-enabled pipelines that already use the x402 payment protocol with USDC. It's well-suited for lightweight string normalization tasks where spinning up a full NLP service is overkill.

## Known failure modes

- Missing 'input' field in request body returns a validation error
- Non-string input type may cause a processing error or unexpected result
- Payment failure or insufficient USDC balance returns a 402 Payment Required error
- Empty string input may return an empty result with no error
- Network or server errors on vercel.app infrastructure may return 5xx responses

## How this service works

Machine-readable settlement service

## Output

Returns a JSON object with an 'operation' field (a string identifying the operation performed, e.g. 'text.lowercase') and a 'result' field containing the fully lowercased version of the input string.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "operation",
  "result"
 ],
 "properties": {
  "result": {},
  "operation": {
   "type": "string"
  }
 },
 "additionalProperties": true
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pennyrail-text-lowercase-converter-2731b5e4/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)
