# AgentsTools Cross-Source Crypto Market Report

> AgentsTools Cross-Source Crypto Market Report is a paid API for AI agents from api.agentstools.dev, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns a rich market report for a given token combining Chainlink price feeds, DEX pool data, TVL-weighted VWAP, total pool TVL, recent price change, and volatility metrics.

## Facts

- Endpoint: GET https://api.agentstools.dev/market/report
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentstools-cross-source-crypto-market-report-ba281c6f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_U_Yas0agy7RQYX1N8-_y2

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 agentstools-cross-source-crypto-market-report-ba281c6f
```

Example prompt: Can you pull the full on-chain market report for ETH — I want the Chainlink price, TVL-weighted VWAP across DEX pools, total pool TVL, recent price change, and volatility all in one go?

## When to prefer this

Use this endpoint when you need a comprehensive, multi-source on-chain market snapshot for a crypto token in a single call — especially when you want TVL-weighted VWAP (not just spot price), pool TVL context, and volatility together. Prefer this over a simple price feed when you need DeFi-native metrics computed from DEX pool state, or when you want cross-source validation between Chainlink and on-chain DEX data.

## Known failure modes

- Token symbol not recognized or unsupported — returns error or empty data
- Chainlink feed unavailable for requested token — partial data returned
- DEX pools have insufficient liquidity to compute VWAP — degraded result
- Network or on-chain RPC timeout — service may return 503 or stale data
- Payment not included or insufficient — 402 Payment Required response

## How this service works

Rich cross-source market report for 50+ assets (crypto, stablecoins, forex, metals): Chainlink + DEX pools, TVL-weighted VWAP, total pool TVL, recent change and volatility — all computed by us from on-chain state.

## Output

A structured market report containing: Chainlink oracle price, TVL-weighted VWAP computed from DEX pool data, total aggregate pool TVL, recent price change percentage, and volatility metric — all derived from live on-chain state for the requested token.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "token"
     ],
     "properties": {
      "token": {
       "type": "string",
       "description": "Symbol, e.g. ETH, BTC, SOL, USDT, EUR, XAU. Assets without a DEX pool return a valid Chainlink-only report."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentstools-cross-source-crypto-market-report-ba281c6f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentstools.dev](https://www.zero.xyz/host/api.agentstools.dev/llms.txt)
