# Numora Pressure Unit Conversion

> Numora Pressure Unit Conversion is a paid API for AI agents from numormo.vercel.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 using pure math computation with no external dependencies.

## Facts

- Endpoint: POST https://numormo.vercel.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-d27cd08a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lkaELjznZHa5vroAUkd7v

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-d27cd08a -d '<json body>'
```

Example prompt: Convert 14.7 PSI to pascals for me — I need the exact numeric result.

## When to prefer this

Choose this endpoint when you need a reliable, dependency-free pressure unit conversion with a consistent JSON response. Ideal for engineering, scientific, or IoT agent workflows where accurate numeric conversion between pressure units (PSI, bar, Pa, kPa, atm, mmHg, torr, etc.) is needed inline without spinning up a general-purpose math library or calling a heavyweight API. Useful within micropayment-enabled agentic pipelines on Base.

## Known failure modes

- Unsupported or misspelled pressure unit strings cause validation errors
- Missing required fields (value, from, to) return an error response
- Passing non-numeric value causes schema validation failure
- Converting between incompatible physical dimensions (e.g. temperature units) will fail or return incorrect results

## 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 boolean success flag, a result object containing the converted pressure value, and a human-readable computation string describing what was calculated (e.g. '14.7 PSI converted to 101352.9 pascals').

## 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-d27cd08a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from numormo.vercel.app](https://www.zero.xyz/host/numormo.vercel.app/llms.txt)
