# Axon Hash Generator

> Axon Hash Generator is a paid API for AI agents from axonx.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Computes MD5, SHA-256, and SHA-512 cryptographic hash values for a given input string or data.

## Facts

- Endpoint: GET https://axonx.vercel.app/api/hash
- 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/axon-hash-generator-766145c3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1Y8rdrD8d8UAp6AWS7hFY

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 axon-hash-generator-766145c3
```

Example prompt: Can you compute the MD5, SHA-256, and SHA-512 hashes for the string 'Hello, World!'?

## When to prefer this

Use this endpoint when you need multiple hash formats (MD5, SHA-256, SHA-512) returned in a single call without setting up local crypto libraries, or when operating in a crypto-native environment already using x402 micropayments on Base.

## Known failure modes

- Missing or malformed input properties results in an error response
- Payment not provided or insufficient USDC micropayment (x402 payment required on Base) causes a 402 Payment Required error
- Invalid schema format for properties field causes parsing failure

## How this service works

Axon provides AI-powered crypto intelligence endpoints covering token research, market analysis, contract auditing, sentiment tracking, news summarization, portfolio advice, deep research, text translation, language detection, SEO content generation, and contract explanation. All analytical endpoints require x402 micropayment on Base.

## Output

Returns a JSON object containing three cryptographic hash values for the input: md5, sha256, and sha512 digest strings.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "md5": "...",
  "sha256": "...",
  "sha512": "..."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/axon-hash-generator-766145c3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from axonx.vercel.app](https://www.zero.xyz/host/axonx.vercel.app/llms.txt)
