# Veltrix Node

> Veltrix Node is a paid API for AI agents from veltrix-node.onrender.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Task-routed Mistral LLM endpoint that performs extraction, summarization, classification, and conversion with strict JSON output.

## Facts

- Endpoint: POST https://veltrix-node.onrender.com/query
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/veltrix-node-14ce28fb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_m0Uk8xl9cdCXZIV0q0Ufg

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 veltrix-node-14ce28fb -d '<json body>'
```

Example prompt: Extract all product names, prices, and availability statuses from this raw text and return them as structured JSON: 'The Apex Blender retails at $49.99 and is in stock, while the NovaMixer Pro at $89.99 is currently out of stock.'

## When to prefer this

Choose Veltrix Node when you need a lightweight, pay-per-call LLM endpoint that guarantees structured JSON output for text extraction, summarization, classification, or conversion tasks — especially when you want predictable machine-readable responses without post-processing prose. Prefer this over general-purpose LLM APIs when strict JSON output and micropayment-based access (x402) are required.

## Known failure modes

- Invalid or missing input text returns an error JSON with a descriptive message
- Unsupported task type may return an empty or default response
- Rate limiting or payment failure (x402) results in a 402 Payment Required response
- Ambiguous input may produce low-quality or incomplete extraction
- Very long inputs may be truncated or cause timeout on the hosted Render instance

## How this service works

Task-routed Mistral endpoint: extract, summarize, classify, convert. Strict JSON output only.

## Output

A strict JSON object containing the result of the requested task — extracted fields, a summary string, a classification label with optional confidence, or a converted/reformatted version of the input data. No prose or markdown, only valid JSON.

## Request schema (JSON Schema)

```json
{
 "properties": {
  "input": {
   "required": [
    "method"
   ],
   "properties": {
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/veltrix-node-14ce28fb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from veltrix-node.onrender.com](https://www.zero.xyz/host/veltrix-node.onrender.com/llms.txt)
