# Onvexia Universe Search

> Onvexia Universe Search 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).

Search and discover blockchain assets across ten chains using a text query, returning matched assets from Onvexia's fused analytics universe

## Facts

- Endpoint: GET https://onvexia.com/v1/universe/search
- 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-universe-search-735852d1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AF-1VtvxbPVt-5vvaebZh

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-universe-search-735852d1
```

Example prompt: Search Onvexia's blockchain universe for assets matching 'Uniswap' and return up to 10 results — I want to see which tokens across their ten chains match that name.

## When to prefer this

Use this endpoint when you need to discover or identify which blockchain assets exist within Onvexia's coverage universe before querying deeper analytics endpoints, or when you want to search assets by name/symbol across multiple chains simultaneously. Prefer this over chain-specific explorers when cross-chain coverage and fused analytics provenance matter.

## Known failure modes

- Empty data array returned when query matches no assets in the universe
- Limit parameter exceeding 200 may be rejected or clamped
- Malformed query string may return empty results without an explicit error
- Payment not processed (x402 protocol failure) blocks the call
- Rate limiting if too many calls are made in rapid succession

## 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

Returns a JSON object with a `data` array of matched asset records from Onvexia's universe (thousands of assets across ten chains), and a `meta` object containing coverage and provenance information including a link to the full OpenAPI spec. An empty data array means no assets matched the query, not that the metric is unsupported.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "q": {
       "type": "string",
       "description": "Query"
      },
      "limit": {
       "type": "string",
       "description": "Max 200"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "example": {
     "type": "object",
     "properties": {
      "data": {
       "description": "The result — an array or object depending on the endpoint. An empty array means no rows in range, never that the metric is unsupported."
      },
      "meta": {
       "type": "object",
       "description": "Coverage and provenance: what was measured, and what is not held. A null label means no label is held, never that the subject is safe."
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/onvexia-universe-search-735852d1/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)
