# 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 lowercase (lower case) text via a paid micro-settlement API endpoint

## Facts

- Endpoint: POST https://pennyrail.vercel.app/api/p/nano/text.lowercase--lower-case
- 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-30ad3dc6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EujVs5c_FW8zmpIshGGAZ

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-30ad3dc6 -d '<json body>'
```

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

## When to prefer this

Choose this endpoint when you need a simple, reliable, pay-per-use text lowercasing operation without setting up your own string processing infrastructure. It is ideal for AI agents operating in a micro-payment (x402/USDC) environment where you want to call lightweight text normalization as an atomic, billable unit. For high-volume batch lowercasing, a local string operation would be more cost-effective; this shines in agent pipelines that already use x402 payment rails.

## Known failure modes

- Missing 'input' field in request body returns a validation error
- Non-string input may cause a type error or unexpected behavior
- Payment failure (x402) if USDC funds are insufficient or wallet not configured
- Network timeout if Vercel cold-start latency is high
- Empty string input may return an empty string result with no error

## How this service works

Machine-readable settlement service

## Output

Returns a JSON object containing the lowercase-converted version of the input string. The response schema is open (additionalProperties: true), so the lowercase result is likely nested under a result or output field in the response body.

## 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-30ad3dc6/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)
