# Numora Z-Score Calculator

> Numora Z-Score Calculator is a paid API for AI agents from numormor.netlify.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Computes the z-score (standard score) for a dataset, indicating how many standard deviations each value is from the mean

## Facts

- Endpoint: POST https://numormor.netlify.app/api/statistics/zscore
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/numora-z-score-calculator-18d5d1f9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IIpzEEVUhqAx_RWSjOBKf

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 numora-z-score-calculator-18d5d1f9 -d '<json body>'
```

Example prompt: Calculate the z-scores for this dataset: [72, 85, 90, 68, 95, 78, 82, 74, 88, 91] — I want to know which values are more than 1 standard deviation from the mean.

## When to prefer this

Choose this endpoint when you need serverless, dependency-free z-score computation paid per-call via crypto micropayments on Base, without spinning up a statistics library or data science environment. Ideal for AI agents that need lightweight, on-demand statistical standardization without maintaining a math backend.

## Known failure modes

- Missing required 'data' array field returns validation error
- Empty array or single-element array may cause division-by-zero or undefined standard deviation
- Non-numeric values in the data array may cause computation failure
- Payment failure via x402 micropayment returns 402 Payment Required
- Array with zero variance (all identical values) causes division by zero for z-score

## How this service works

100 pure math computation endpoints for AI agents. Statistics, financial math, linear algebra, equation solving, calculus, number theory, sequence generation, and unit conversions. Zero external dependencies. x402 micropayments on Base.

## Output

Returns a JSON object with success=true, a result object containing z-score values for each data point (and likely mean and standard deviation), and a human-readable computation string describing what was calculated.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "data"
 ],
 "properties": {
  "data": {
   "type": "array"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "success",
  "result",
  "computation"
 ],
 "properties": {
  "result": {
   "type": "object",
   "description": "Computation result varies by endpoint"
  },
  "success": {
   "type": "boolean",
   "description": "Always true on success"
  },
  "computation": {
   "type": "string",
   "description": "Human-readable description of what was computed"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/numora-z-score-calculator-18d5d1f9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from numormor.netlify.app](https://www.zero.xyz/host/numormor.netlify.app/llms.txt)
