# Onvexia Predictions Models Catalog

> Onvexia Predictions Models Catalog is a paid API for AI agents from onvexia.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-17).

Returns the catalog of available blockchain analytics prediction models covering thousands of crypto assets across ten chains

## Facts

- Endpoint: GET https://onvexia.com/v1/predictions/models
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-17
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/onvexia-predictions-models-catalog-2f9e7341
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zcDWRpkzm28NZALS5aBXG

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-predictions-models-catalog-2f9e7341
```

Example prompt: Show me all the prediction models Onvexia has available — I want to know which blockchains and assets are covered before I start querying for signals.

## When to prefer this

Use this endpoint as a discovery step before calling specific Onvexia prediction endpoints — it tells you what models exist, what assets they cover, and what chain data is available. Prefer this over guessing model IDs or asset coverage when building integrations against Onvexia's multi-chain analytics suite.

## Known failure modes

- Empty data array if no models match the properties filter
- 402 Payment Required if USDC payment header is missing or payment fails
- Invalid or malformed properties parameter returns 400 error
- Rate limiting or authentication issues may return 429 or 401
- Service unavailability returns 503 with no model data

## 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 with a 'data' array containing available prediction model entries and a 'meta' object with documentation URL and endpoint path. Each model entry describes supported assets, chains, and model identifiers usable in subsequent prediction queries.

## 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/predictions/models"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/onvexia-predictions-models-catalog-2f9e7341/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)
