# Onvexia Asset Score History

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

Returns the historical time-series of composite blockchain analytics scores for a given crypto asset symbol

## Facts

- Endpoint: GET https://onvexia.com/v1/assets/%7Bsymbol%7D/scores/history
- Price: $0.01/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-score-history-f9b56661
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TcRjPkNbVUMTanHbbC02b

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-score-history-f9b56661
```

Example prompt: Pull the full score history for BTC from Onvexia — I want to see how its composite blockchain analytics rating has trended over time.

## When to prefer this

Choose this endpoint when you need the temporal evolution of a crypto asset's composite analytics score — not just its current state — enabling trend analysis, backtesting, compliance auditing, or risk monitoring over time. Prefer it over current-score endpoints when historical context matters. Particularly valuable when the depth of coverage (labelled addresses, half a million analysed documents, data back to 2008) is needed for research-grade analysis.

## Known failure modes

- Unknown or unsupported asset symbol returns empty data array
- Symbol for an asset not tracked across Onvexia's ten chains may return no results
- Malformed symbol parameter may result in a 400 error
- Payment not completed via x402 protocol results in a 402 Payment Required response
- Rate limiting or quota exhaustion may return a 429 error
- Very new assets without historical data will return minimal or empty time-series

## 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 containing time-series entries of historical composite analytics scores for the requested asset symbol, plus a `meta` object with documentation links and the endpoint path.

## 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}/scores/history"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/onvexia-asset-score-history-f9b56661/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)
