# Delx Pluralize Lite

> Delx Pluralize Lite is a paid API for AI agents from api.delx.ai, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns the correctly pluralized English word with its count, given a word and integer count.

## Facts

- Endpoint: POST https://api.delx.ai/api/v1/x402/pluralize-lite
- 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/delx-pluralize-lite-60a116d5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_T5NN7yJAJbzIazPhrrsBO

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 delx-pluralize-lite-60a116d5 -d '<json body>'
```

Example prompt: Pluralize the word 'file' for a count of 3 so I can display it correctly in my status message.

## When to prefer this

Choose this endpoint when an AI agent needs to format count-labeled English words in output messages without pulling in a full i18n or NLP library. Ideal for lightweight, serverless agent pipelines that generate user-facing text and need grammatically correct singular/plural forms on the fly. Prefer it over manual string interpolation or regex hacks when correctness for irregular plurals matters. Not appropriate for multilingual pluralization or morphologically complex languages.

## Known failure modes

- Missing or empty 'word' field returns an error or unexpected result
- Non-integer or negative count may produce undefined behavior
- Irregular English plurals not in the local dictionary may be handled incorrectly
- Payment failure (x402) blocks the call if the agent wallet has insufficient USDC balance
- Rare or highly domain-specific words may not be recognized and could fall back to naive -s suffix rules

## How this service works

Lightweight English pluralization helper. Call when you label counts in agent messages without i18n frameworks. Returns pluralized word with count for $0.001 USDC via x402 on Base. No network, no keys, no retention; first-party local JSON only. Results are advisory; the caller owns budgets, auth, and production controls.

## Output

Returns the pluralized form of the input word combined with the count (e.g. '3 files', '1 file'), ready to embed directly in agent-generated text. No i18n framework required; computed locally from a first-party JSON dictionary.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "word": {
   "type": "string",
   "description": "Input field: word."
  },
  "count": {
   "type": "integer",
   "description": "Input field: count."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "text": "agents",
  "word": "agent",
  "count": 2,
  "schema": "delx/util-pluralize-lite/v1"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/delx-pluralize-lite-60a116d5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.delx.ai](https://www.zero.xyz/host/api.delx.ai/llms.txt)
