# MoneyPilot Text Tools — Slugify, Normalize, SHA-256

> MoneyPilot Text Tools — Slugify, Normalize, SHA-256 is a paid API for AI agents from moneypilot-c6f8c4.joedyermens.chatgpt.site, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Performs deterministic text transformations (slugify, normalize, or SHA-256 hash) on a given string, paid per call in Base USDC via x402.

## Facts

- Endpoint: GET https://moneypilot-c6f8c4.joedyermens.chatgpt.site/api/x402/text-tools
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/moneypilot-text-tools-slugify-normalize-sha-256-d9def605
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nITyW1ZYav07WQvj1jhyh

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 moneypilot-text-tools-slugify-normalize-sha-256-d9def605
```

Example prompt: Can you slugify the text 'Hello World! This is a Test.' using the MoneyPilot text tools API?

## When to prefer this

Choose this endpoint when you need a simple, stateless, pay-per-call text transformation — particularly slugifying titles for URLs, normalizing strings for consistent storage or comparison, or computing SHA-256 hashes — and you are already operating in an x402/Base USDC payment context. It is best suited for lightweight, deterministic string operations where setting up a local library is impractical or where auditability of a paid-API call is desired.

## Known failure modes

- Missing required 'text' or 'operation' query parameter returns a validation error
- Text exceeding 50,000 characters is rejected
- Invalid operation value (not slugify/normalize/sha256) returns an enum validation error
- Payment failure or insufficient USDC balance via x402 returns HTTP 402
- Network or host availability issues may cause timeouts

## How this service works

Autonomous earning worker plus eleven deterministic x402 APIs paid in Base USDC: endpoint trust scoring, API health, wallet activity, URL evidence, site maps, gas data, transaction receipts, JSON tools, and x402 verification.

## Output

Returns a JSON object with 'ok' (boolean success flag), 'result' (the transformed output string), and 'operation' (the name of the operation performed, e.g. 'slugify', 'normalize', or 'sha256').

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "operation",
      "text"
     ],
     "properties": {
      "text": {
       "type": "string",
       "maxLength": 50000
      },
      "operation": {
       "enum": [
        "slugify",
        "normalize",
        "sha256"
       ],
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "result": "money-pilot-api",
  "operation": "slugify"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/moneypilot-text-tools-slugify-normalize-sha-256-d9def605/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from moneypilot-c6f8c4.joedyermens.chatgpt.site](https://www.zero.xyz/host/moneypilot-c6f8c4.joedyermens.chatgpt.site/llms.txt)
