# Orders of Magnitude Deduplication API

> Orders of Magnitude Deduplication API is a paid API for AI agents from x402-api-production-5133.up.railway.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Deduplicates a string input, removing repeated or redundant entries via a paid AI service

## Facts

- Endpoint: GET https://x402-api-production-5133.up.railway.app/ns/dedup
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orders-of-magnitude-deduplication-api-bc978660
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_G9cIr1bgYJIJ2v75XWOEj

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 orders-of-magnitude-deduplication-api-bc978660
```

Example prompt: Can you deduplicate this list for me and remove any repeated entries: 'apple, banana, apple, cherry, banana, date'?

## When to prefer this

Choose this endpoint when you need a quick, pay-per-use deduplication of a string or list via the x402 micropayment protocol, especially in agent workflows where cleaning repeated entries is a lightweight preprocessing step costing only $0.01 USDC per call.

## Known failure modes

- Missing required 'input' parameter returns a 400 or validation error
- Empty string input may return an empty result or error
- Payment not fulfilled (402) if x402 protocol handshake fails
- Ambiguous delimiter in input string may cause incorrect deduplication
- Very long input strings may hit service limits

## How this service works

Data and AI services via x402 payment protocol

## Output

Returns a deduplicated version of the input string with redundant or repeated items removed, as a JSON object with the cleaned output.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orders-of-magnitude-deduplication-api-bc978660/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-api-production-5133.up.railway.app](https://www.zero.xyz/host/x402-api-production-5133.up.railway.app/llms.txt)
