# PennyRail Text Uppercase Converter

> PennyRail Text Uppercase 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 uppercase characters via a paid micro-API endpoint

## Facts

- Endpoint: POST https://pennyrail.vercel.app/api/p/nano/text.uppercase--convert-to-uppercase
- 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-uppercase-converter-ece13ad0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hk9aVR6MEfo_6shHkddxh

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-uppercase-converter-ece13ad0 -d '<json body>'
```

Example prompt: Can you convert the text 'hello world, this is a test!' to uppercase for me?

## When to prefer this

Use this endpoint when you need a simple, pay-per-use uppercase text conversion without setting up your own string processing logic, especially in agent workflows where lightweight micro-API calls with USDC micropayments (x402 protocol) are preferred

## Known failure modes

- Missing 'input' field in request body returns a validation error
- Non-string input type may cause processing failure
- Payment not included or insufficient USDC results in 402 Payment Required
- Service downtime on Vercel hosting may return 503

## How this service works

Machine-readable settlement service

## Output

Returns a JSON object containing the uppercase version of the submitted input string

## 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-uppercase-converter-ece13ad0/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)
