# 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-13).

Evaluates an asset's market-data quality, freshness, liquidity, volatility, confidence score, and x402/Base spendability before an autonomous transaction.

## Facts

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

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-cfb1707f
```

Example prompt: Before you execute that payment, can you assess the market-data quality, freshness, and spendability of ETH on Base — specifically whether it's safe to spend directly via x402 or if I need to convert it first?

## When to prefer this

Use this endpoint immediately before any autonomous transaction or payment involving a crypto asset, especially on Base via x402. Prefer it when you need a holistic pre-flight check combining data freshness, liquidity depth, volatility, confidence scoring, and spendability classification in a single call — rather than querying spot price, volume, and chain support separately.

## Known failure modes

- Unknown or unsupported ticker symbol returns quality: insufficient-data with null price and confidence
- Stale data source returns freshness.status: stale with elevated ageSeconds
- Low liquidity assets return spendability: unsupported or convert-first
- Market data gaps return marketSignals.completeness: sparse or partial
- Invalid symbol format may return 4xx error
- Payment failure (USDC balance insufficient) returns 402

## How this service works

AgentOracle: use before an autonomous transaction to assess an asset's 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

Returns a structured assessment object including: quality rating (high/medium/low/insufficient-data), current USD price, 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 rating), spendability classification (direct-spend/convert-first/unsupported/insufficient-data), human-readable rationale strings, and a list of limitations.

## 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-cfb1707f/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)
