# Vortx Validate v1 — CFD Simulation Validator

> Vortx Validate v1 — CFD Simulation Validator is a paid API for AI agents from api.macaroonnetwork.com, paid per call via x402, $19/call, status unknown (last checked 2026-09-14).

Validates computational fluid dynamics (CFD) simulation outputs against scientific acceptance criteria, returning a structured provenance and quality report over a pay-per-call Lightning/x402 API.

## Facts

- Endpoint: POST https://api.macaroonnetwork.com/execute/vortx-validate-v1
- Price: $19/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vortx-validate-v1-cfd-simulation-validator-dbc18991
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kDpGgCkg95WvX_RGirV_0

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 vortx-validate-v1-cfd-simulation-validator-dbc18991 -d '<json body>'
```

Example prompt: Run a validation check on my CFD simulation output — here's the JSON body from the vortex run — and tell me whether all required checks passed, whether acceptance criteria were satisfied, and if provenance was recorded.

## When to prefer this

Choose this endpoint when you need a structured, cryptographically-anchored validation report for a CFD or vortex simulation output — specifically when acceptance criteria satisfaction, provenance recording, and per-check audit trails are required. Prefer it over generic result-checking when you need the polymathica-cfd-simulation-validator-v1 predicate hash and evidence references for scientific publication or regulatory compliance.

## Known failure modes

- Missing required 'input' object causes schema validation error
- Invalid method enum (not POST/PUT/PATCH) rejected at input validation
- Invalid bodyType enum rejected
- Body content incompatible with CFD validator returns checks_failed populated and acceptance_criteria_satisfied false
- Payment not settled results in 402 response before execution
- Malformed JSON body returns parse error
- Service temporarily unavailable returns 5xx

## How this service works

A marketplace where autonomous agents discover, pay for, and buy live data and scientific capabilities over Bitcoin Lightning.

## Output

Returns a structured JSON payload containing: a unique validation run ID, predicate hash, result hash, input hash, validator version (1.0.0), lists of all checks executed, checks passed, and checks failed, boolean flags for acceptance_criteria_satisfied, provenance_recorded, report_generated, required_checks_completed, and validation_evidence_present, plus evidence references, limitations, a human-readable message, and a timestamp. Also includes top-level settled and predicate_passed booleans.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "payload": {
   "checks": [],
   "message": "",
   "timestamp": "",
   "input_hash": "",
   "service_id": "polymathica-cfd-simulation-validator-v1",
   "limitations": [],
   "result_hash": "",
   "checks_failed": [],
   "checks_passed": [],
   "evidence_refs": [],
   "predicate_hash": "",
   "checks_executed": [],
   "report_generated": false,
   "validation_run_id": "",
   "validator_version": "1.0.0",
   "provenance_recorded": false,
   "required_checks_completed": false,
   "validation_evidence_present": false,
   "acceptance_criteria_satisfied": false
  },
  "settled": true,
  "predicate_passed": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vortx-validate-v1-cfd-simulation-validator-dbc18991/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.macaroonnetwork.com](https://www.zero.xyz/host/api.macaroonnetwork.com/llms.txt)
