# PennyRail Alphabetize Lines

> PennyRail Alphabetize Lines 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).

Sorts lines of text alphabetically, returning them in A-Z order

## Facts

- Endpoint: POST https://pennyrail.vercel.app/api/p/nano/text.lines-sort--alphabetize-lines
- 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-alphabetize-lines-559022ff
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_H57j2-l-9Yi78_km-qAdJ

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-alphabetize-lines-559022ff -d '<json body>'
```

Example prompt: Can you alphabetize these lines for me? 'Mango
Apple
Banana
Cherry
Date'

## When to prefer this

Use this endpoint when you need a fast, pay-per-call, serverless text-line alphabetization without setting up your own sorting logic. Good for lightweight agent pipelines that need deterministic text ordering on demand without managing infrastructure.

## Known failure modes

- Empty input string returns an error or empty result
- Non-string input rejected due to schema validation
- Network timeout if payload is very large
- Payment failure (402) if USDC balance is insufficient

## How this service works

Machine-readable settlement service

## Output

Returns the input text lines reordered in ascending alphabetical (A-Z) order, delivered as a structured response object containing the sorted text.

## 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-alphabetize-lines-559022ff/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)
