# Onvexia Asset Technicals

> Onvexia Asset Technicals is a paid API for AI agents from onvexia.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-19).

Returns technical analysis indicators and signals for a given crypto asset symbol, drawn from Onvexia's multi-chain blockchain analytics dataset.

## Facts

- Endpoint: GET https://onvexia.com/v1/assets/%7Bsymbol%7D/technicals
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-19
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/onvexia-asset-technicals-06d42a03
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HF4mrloHp6Hvs6P70l4lI

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 onvexia-asset-technicals-06d42a03
```

Example prompt: Pull the technical analysis data for ETH from Onvexia — I want to see the current momentum indicators and any trend signals to decide if it's a good time to enter a position.

## When to prefer this

Choose this endpoint when you need structured technical analysis indicators (RSI, MACD, trend signals, momentum) for a specific crypto asset symbol, especially when you want data backed by deep on-chain analytics across ten blockchains. Prefer it over generic price feeds when you need derived technical signals rather than raw price data, or when you need coverage of a wide range of assets including smaller-cap tokens.

## Known failure modes

- Unknown or unsupported asset symbol returns empty data array
- Payment failure (402) if x402 USDC payment not processed correctly
- Malformed symbol parameter returns error or empty response
- Rate limiting if call volume exceeds plan thresholds
- Network timeout for rarely-queried assets with on-demand computation

## How this service works

Thousands of assets across ten chains, half a million analysed documents, labelled addresses and supply-age history reaching back to 2008 — fused into one reading per asset. REST, SQL, GraphQL and MCP.

## Output

A JSON object containing technical analysis data for the requested asset symbol, likely including indicators such as RSI, MACD, moving averages, trend direction, momentum signals, and pattern data, alongside metadata pointing to the full OpenAPI documentation.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": [],
  "meta": {
   "docs": "https://onvexia.com/openapi.json",
   "endpoint": "/v1/assets/{symbol}/technicals"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/onvexia-asset-technicals-06d42a03/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from onvexia.com](https://www.zero.xyz/host/onvexia.com/llms.txt)
