# agents.dyoeway.org Crypto Price & Market Data

> agents.dyoeway.org Crypto Price & Market Data is a paid API for AI agents from agents.dyoeway.org, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-16).

Returns live price, 24h change, market cap, and volume for any cryptocurrency by symbol

## Facts

- Endpoint: GET https://agents.dyoeway.org/crypto
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agents-dyoeway-org-crypto-price-market-data-ef1f71d3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1-Cf2cbYPrAAQKidJFFlX

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 agents-dyoeway-org-crypto-price-market-data-ef1f71d3
```

Example prompt: What's the current price, 24-hour change, market cap, and volume for BTC right now?

## When to prefer this

Use this endpoint when an agent needs real-time price data, 24h momentum, market cap, or volume for a specific cryptocurrency by ticker symbol. Prefer this over trending or gainers/losers endpoints when the agent already knows which coin it wants data on. Ideal for trading agents, portfolio trackers, or any workflow requiring live single-coin market data.

## Known failure modes

- Unknown or unsupported coin symbol returns an error or empty result
- Missing ?symbol parameter causes a bad request response
- Payment of $0.01 USDC not provided or rejected results in 402 Payment Required
- Network timeout if upstream price feed is slow
- Symbol case sensitivity issues (e.g. BTC vs btc) may cause mismatches

## How this service works

Live crypto price + 24h change, market cap & volume for any coin — for trading agents. Input: ?symbol=btc

## Output

Returns live cryptocurrency data including current USD price, percentage change over the last 24 hours, total market capitalization, and 24-hour trading volume for the requested coin symbol.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "symbol": {
       "type": "string",
       "description": "Coin symbol, e.g. btc"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agents-dyoeway-org-crypto-price-market-data-ef1f71d3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.dyoeway.org](https://www.zero.xyz/host/agents.dyoeway.org/llms.txt)
