# TradeOS Venice Intelligence Router

> TradeOS Venice Intelligence Router is a paid API for AI agents from tradeos.tech, paid per call via x402, $0.75/call, status unknown (last checked 2026-09-14).

Routes a natural-language crypto market intelligence request to the most relevant TradeOS SKU, assembles a bounded evidence packet via Venice as the explanation layer, and returns a structured model-facing read with routed SKU, evidence freshness, caveats, and recommended next calls.

## Facts

- Endpoint: POST https://tradeos.tech/x402/v1/intelligence/tradeos-venice-intel-router
- Price: $0.75/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tradeos-venice-intelligence-router-fe7aeeb3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HDjlfbit3BG64vSZNeFns

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 tradeos-venice-intelligence-router-fe7aeeb3 -d '<json body>'
```

Example prompt: I want to understand whether the current market regime and token-risk signals for ETH support a long position — route my question through TradeOS and give me the evidence packet with freshness info, any caveats, and what I should call next.

## When to prefer this

Choose this endpoint when an AI agent or builder needs to ask a free-form natural-language crypto market intelligence question and wants TradeOS to automatically select the correct intelligence module, rather than knowing the exact SKU upfront. It is the right entry point when the query type is uncertain, when you need freshness metadata and caveats alongside the answer, or when you want guidance on which TradeOS calls to make next. Prefer direct SKU endpoints if you already know exactly which TradeOS module you need.

## Known failure modes

- Query too ambiguous to route to a specific SKU — returns ambiguity caveat with multiple candidate SKUs
- Evidence packet staleness — freshness metadata indicates data is beyond acceptable window
- Unsupported request type (execution, custody, copy trading) — returns explicit out-of-scope rejection
- Payment failure or insufficient USDC balance — x402 payment error before processing
- Internal Venice explanation layer unavailability — degraded response without explanation text

## How this service works

Routes a natural-language builder or agent request to the most relevant TradeOS intelligence SKU, builds a bounded TradeOS evidence packet, and uses Venice as the explanation layer. The result is a model-facing read with routed SKU, evidence freshness, caveats, and next TradeOS calls. This is not raw inference, execution, custody, copy trading, or personalized financial advice.

## Output

A model-facing structured response containing: the routed TradeOS intelligence SKU matched to the query, a bounded evidence packet with supporting signals, evidence freshness timestamps, explicit caveats about scope and limitations, and a list of recommended next TradeOS API calls to deepen the analysis. Venice provides the explanation layer for human-readable reasoning.

## 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",
     "properties": {
      "output": {
       "type": "string"
      },
      "symbol": {
       "type": "string"
      },
      "chain_id": {
       "type": "string"
      },
      "metadata": {
       "type": "object"
      },
      "contract_address": {
       "type": "string"
      }
     },
     "additionalProperties": true
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "const": "POST"
    },
    "bodyType": {
     "type": "string",
     "const": "json"
    }
   }
  },
  "output": {
   "type": "object"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tradeos-venice-intelligence-router-fe7aeeb3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from tradeos.tech](https://www.zero.xyz/host/tradeos.tech/llms.txt)
