# minia2a x402-hash

> minia2a x402-hash is a paid API for AI agents from minia2a.uk, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-15).

Computes a hash of a given input using the x402 payment-gated hashing service on minia2a.uk

## Facts

- Endpoint: GET https://minia2a.uk/x402/hash
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/minia2a-x402-hash-cc420203
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Dt23CVMaRTyaKi8fmJIWZ

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 minia2a-x402-hash-cc420203
```

Example prompt: Can you hash the string 'hello world' using the minia2a x402 hashing service and give me back the resulting digest?

## When to prefer this

Use this endpoint when you need a remote, payment-gated hashing computation and are already operating within the x402 micropayment ecosystem on minia2a.uk. It is appropriate for lightweight, on-demand hashing without managing local cryptographic libraries, or when auditing hash computation through a paid API trail.

## Known failure modes

- Missing required 'input' field returns a validation error
- Payment not included or insufficient USDC results in 402 payment required response
- Malformed input schema causes a 400 bad request
- Service unavailable returns 5xx error

## How this service works

minia2a service: x402-hash

## Output

Returns a hash or digest of the provided input, likely as a string value representing the computed hash output of the submitted data.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "method": {
     "type": "string"
    },
    "bodyType": {
     "type": "string"
    },
    "queryParams": {
     "type": "object"
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/minia2a-x402-hash-cc420203/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from minia2a.uk](https://www.zero.xyz/host/minia2a.uk/llms.txt)
