# DYOE Trending Coins

> DYOE Trending Coins 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-15).

Returns the list of cryptocurrencies currently trending in the market, intended for trading and research agents.

## Facts

- Endpoint: GET https://agents.dyoeway.org/trending
- 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/dyoe-trending-coins-0ff92346
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gI6SzrWmEmBRgI6tpWRtj

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 dyoe-trending-coins-0ff92346
```

Example prompt: What coins are trending in crypto right now? I want to see what's hot before I make any trading decisions today.

## When to prefer this

Use this endpoint when an agent needs a real-time snapshot of which coins are currently trending — ideal for seeding a trading watchlist, orienting research, or identifying momentum plays. Prefer over the top gainers/losers endpoint when you want trend/attention signals rather than strict price-movement rankings.

## Known failure modes

- Upstream data source unavailable returns 5xx error
- Payment not processed via x402 protocol returns 402 Payment Required
- Rate limit exceeded returns 429
- Empty or stale trending list if market data feed is lagging

## How this service works

The coins trending right now — for trading & research agents. Input: (none)

## Output

A list of currently trending cryptocurrencies, likely including coin names, symbols, and associated trend signals or rankings, suitable for informing trading or research workflows.

## 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": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/dyoe-trending-coins-0ff92346/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)
