# AgentOracle Asset Assessment

> AgentOracle Asset Assessment is a paid API for AI agents from aiagentoracle.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns a comprehensive pre-transaction assessment of a tracked asset including market-data quality, freshness, liquidity, volatility, confidence score, and x402/Base spendability status.

## Facts

- Endpoint: GET https://aiagentoracle.ai/api/v1/asset/ETH/assessment
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentoracle-asset-assessment-25bab11e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qS-HsUJEU3yjFbCSsyOnF

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 agentoracle-asset-assessment-25bab11e
```

Example prompt: Before you execute that ETH payment on Base, run an AgentOracle assessment on ETH — I want to see the data quality, freshness, confidence score, liquidity, volatility, and whether it can be spent directly via x402 or needs converting first.

## When to prefer this

Use this endpoint when an autonomous agent needs a comprehensive go/no-go signal before executing a financial transaction — it combines data quality, freshness, liquidity, volatility, confidence, and Base/x402 spendability into a single structured response. Prefer it over a simple price lookup when transaction safety and data trust are paramount, especially for agents operating on Base with x402 payment flows.

## Known failure modes

- Unknown or untracked ticker symbol returns insufficient-data quality and null price fields
- Stale data ingestion causes freshness status to return 'stale' with elevated age seconds
- Sparse market signals result in 'partial' or 'sparse' completeness and reduced confidence score
- Service unavailability or upstream data feed failure may return error or null market signals
- Misspelled symbol in path returns no match — symbol is case-sensitive per path param

## How this service works

AgentOracle: assess a tracked asset before an autonomous transaction — market-data quality, freshness, liquidity, volatility, confidence, and whether it is directly spendable through x402 on Base or must be converted first. Informational and non-custodial.

## Output

A structured JSON object containing: asset symbol, name, chain, current USD price, quality rating (high/medium/low/insufficient-data), confidence score (0–1), freshness metadata (timestamp, age in seconds, fresh/stale status), market signals (liquidity USD, 24h volume, market cap, 24h volatility percent, completeness), spendability classification (direct-spend/convert-first/unsupported/insufficient-data), an array of rationale strings explaining the assessment, and a limitations array noting data gaps or caveats.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "symbol"
     ],
     "properties": {
      "symbol": {
       "type": "string",
       "description": "Tracked asset ticker symbol."
      }
     },
     "additionalProperties": false
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "symbol",
      "name",
      "chain",
      "priceUsd",
      "quality",
      "confidenceScore",
      "freshness",
      "marketSignals",
      "spendability",
      "rationale",
      "limitations"
     ],
     "properties": {
      "name": {
       "type": "string"
      },
      "chain": {
       "type": "string"
      },
      "symbol": {
       "type": "string"
      },
      "quality": {
       "enum": [
        "high",
        "medium",
        "low",
        "insufficient-data"
       ],
       "type": "string"
      },
      "priceUsd": {
       "type": [
        "number",
        "null"
       ]
      },
      "freshness": {
       "type": "object",
       "required": [
        "asOf",
        "ageSeconds",
        "status"
       ],
       "properties": {
        "asOf": {
         "type": "string",
         "format": "date-time"
        },
        "status": {
         "enum": [
          "fresh",
          "stale"
         ],
         "type": "string"
        },
        "ageSeconds": {
         "type": "integer",
         "minimum": 0
        }
       }
      },
      "rationale": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "limitations": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "spendability": {
       "enum": [
        "direct-spend",
        "convert-first",
        "unsupported",
        "insufficient-data"
       ],
       "type": "string"
      },
      "marketSignals": {
       "type": "object",
       "requi
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentoracle-asset-assessment-25bab11e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from aiagentoracle.ai](https://www.zero.xyz/host/aiagentoracle.ai/llms.txt)
