# Numora Pressure Unit Conversion

> Numora Pressure Unit Conversion is a paid API for AI agents from numormor.netlify.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Converts a pressure value from one unit to another (e.g. PSI to Pascal, bar to atm) using pure math computation with no external dependencies.

## Facts

- Endpoint: POST https://numormor.netlify.app/api/convert/pressure
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/numora-pressure-unit-conversion-9220ba97
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cPYE7JS7C-ao9GmfEGVZV

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-pressure-unit-conversion-9220ba97 -d '<json body>'
```

Example prompt: Convert 14.7 PSI to Pascal using Numora's pure math computation — no lookups, just the number.

## When to prefer this

Use this endpoint when you need a fast, self-contained, dependency-free pressure unit conversion with no API rate limits beyond micropayment cost. Ideal for AI agents that need reliable numeric conversion without calling weather or physics APIs that bundle this as a secondary feature.

## Known failure modes

- Unsupported pressure unit string returns error
- Missing required fields (value, from, to) returns validation error
- Non-numeric value field causes schema rejection
- Misspelled unit names may not be recognized

## 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 a 'result' containing the converted pressure value, a 'success' boolean, and a 'computation' string describing what was calculated in human-readable form.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "to",
  "from",
  "value"
 ],
 "properties": {
  "to": {
   "type": "string"
  },
  "from": {
   "type": "string"
  },
  "value": {
   "type": "number"
  }
 }
}
```

## 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-pressure-unit-conversion-9220ba97/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)
