# Remove Punctuation for Agents

> Remove Punctuation for Agents 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-13).

Strips all punctuation characters from a text string and returns the cleaned text plus a compact processing receipt.

## Facts

- Endpoint: POST https://api.delx.ai/api/v1/x402/remove-punctuation
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/remove-punctuation-for-agents-3063b152
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zdksTh0BWgnJB_5kdcpAf

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 remove-punctuation-for-agents-3063b152 -d '<json body>'
```

Example prompt: Strip all the punctuation from this text so I can use it for keyword extraction: 'Hello, world! This is a test — isn't it great?'

## When to prefer this

Choose this endpoint when you need a deterministic, first-party punctuation removal step with no API key or subscription overhead. Ideal for agentic pipelines where you want a pay-per-call micro-operation ($0.001 USDC via x402) without standing up custom string-processing code. Best suited for preprocessing steps before tokenization, fuzzy matching, or keyword extraction where consistent, predictable stripping behavior is required.

## Known failure modes

- Text exceeds 100,000 character limit — validation error returned, no charge
- Missing or null `text` field — structured validation error, no charge
- Empty string input — returns empty cleaned text
- Non-string value for `text` — validation error

## How this service works

Remove punctuation from text. Useful before tokenization, keyword extraction, or fuzzy match prep. Returns cleaned text with punctuation stripped, plus a compact receipt. $0.001 USDC per successful call via x402 on Base—deterministic first-party JSON, no API key, no subscription, and nothing is billed on structured validation errors.

## Output

Returns a JSON object containing the cleaned text string with all punctuation characters removed, plus a compact receipt confirming the operation (character counts, processing metadata). No data is retained server-side.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "text": {
   "type": "string",
   "maxLength": 100000,
   "description": "Primary text input (max 100k chars). Processed first-party; not retained as a dataset."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "text": "hello agent world",
  "schema": "delx/remove-punctuation/v1"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/remove-punctuation-for-agents-3063b152/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)
