# PitchPilot Hash Tool

> PitchPilot Hash Tool is a paid API for AI agents from pitchpilot-outreach-api.pitchpilot-agents.workers.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Computes multiple hash and encoding representations (SHA-256, SHA-384, SHA-512, CRC32, hex, base64, base64url) of a UTF-8 string in a single call

## Facts

- Endpoint: GET https://pitchpilot-outreach-api.pitchpilot-agents.workers.dev/tools/hash
- 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/pitchpilot-hash-tool-65fc9bbb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VThfsctWAPZIL6UhJxFFA

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 pitchpilot-hash-tool-65fc9bbb
```

Example prompt: Hash the text 'hello world' and give me back the SHA-256, SHA-512, CRC32, and base64 representations all at once.

## When to prefer this

Choose this endpoint when you need multiple hash/encoding formats for a single string in one round-trip, especially within a cold-email or outreach agent pipeline already using the PitchPilot suite. It is ideal when you need SHA-256 alongside CRC32 and base64 simultaneously, avoiding multiple calls to separate hashing services. Prefer it over general-purpose hashing libraries when your agent is already paying via x402/USDC on Base and wants a managed, serverless utility.

## Known failure modes

- Missing 'text' query parameter returns an error
- Non-UTF-8 or malformed input may produce unexpected byte_length values
- Payment failure via x402/USDC on Base will block the request before hashing occurs
- Very long strings may hit Cloudflare Worker request size limits

## How this service works

Paid micro-utilities for cold-email outreach agents: domain deliverability audits, cold-email grading, template generation, plus a tools toolbox (hashing, JWT decode, IDs, slugs, JSON, regex, crypto prices, domain age, weather). Paid via x402 (USDC on Base).

## Output

A JSON object containing all hash and encoding variants of the input string: sha256, sha384, sha512 (hex-encoded digests), crc32 checksum, raw hex encoding, base64, base64url encodings, plus the character length and byte length of the input.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "text"
     ],
     "properties": {
      "text": {
       "type": "string",
       "description": "UTF-8 string to hash"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "sha256"
     ],
     "properties": {
      "hex": {
       "type": "string"
      },
      "crc32": {
       "type": "string"
      },
      "base64": {
       "type": "string"
      },
      "length": {
       "type": "number"
      },
      "sha256": {
       "type": "string"
      },
      "sha384": {
       "type": "string"
      },
      "sha512": {
       "type": "string"
      },
      "base64url": {
       "type": "string"
      },
      "byte_length": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "hex": "68656c6c6f",
  "crc32": "3610a686",
  "base64": "aGVsbG8=",
  "length": 5,
  "sha256": "2cf24dba5fb0a30e26e83b2ac5b9e29e1b161e5c1fa7425e73043362938b9824",
  "sha384": "59e1748777448c69de6b800d7a33bbfb9ff1b463e44354c3553bcdb9c666fa901a1a751c9fb642405954b1ed74a74210",
  "sha512": "9b71d224bd62f3785d96d46ad3ea3d73319bfbc2890caadae2dff72519673ca72323c3d99ba5c11d7c7acc6e14b8c5da0c4663475c2e5c3adef46f73bcdec043",
  "base64url": "aGVsbG8",
  "byte_length": 5
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/pitchpilot-hash-tool-65fc9bbb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pitchpilot-outreach-api.pitchpilot-agents.workers.dev](https://www.zero.xyz/host/pitchpilot-outreach-api.pitchpilot-agents.workers.dev/llms.txt)
