# Onvexia Revisions — Blockchain Analytics Coverage Feed

> Onvexia Revisions — Blockchain Analytics Coverage Feed 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 a paginated list of revision records describing when and how Onvexia's blockchain analytics coverage was updated across assets, chains, and documents.

## Facts

- Endpoint: GET https://onvexia.com/v1/revisions
- 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-revisions-blockchain-analytics-coverage-feed-1b879f7c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1oCOoPGBY3Ae4pah23IAg

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-revisions-blockchain-analytics-coverage-feed-1b879f7c
```

Example prompt: Show me the most recent revisions to Onvexia's blockchain analytics coverage — pull up to 200 records so I can see what data changed and when.

## When to prefer this

Use this endpoint when you need to audit, monitor, or track changes to Onvexia's blockchain analytics coverage over time — particularly when building pipelines that depend on fresh data and need to detect when asset readings, labelled addresses, or document analyses have been revised. Prefer this over general asset-data endpoints when your goal is provenance or changelog inspection rather than live metric retrieval.

## Known failure modes

- Empty data array returned — indicates no revisions in the requested range, not a service error
- Limit parameter exceeds 200 — request may be rejected or capped
- Payment not processed via x402 — 402 response requiring USDC micropayment before data is returned
- Invalid query parameter type — non-string limit value may cause a 400 error
- Endpoint temporarily unavailable — standard 5xx response

## 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 of revision records (empty array if no rows in range, not an indicator of unsupported metrics) and a 'meta' object containing coverage and provenance information, including a link to the full OpenAPI spec at onvexia.com/openapi.json and the endpoint path '/v1/revisions'.

## 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": {
      "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/revisions"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/onvexia-revisions-blockchain-analytics-coverage-feed-1b879f7c/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)
