# Trending Crypto Coins

> Trending Crypto Coins is a paid API for AI agents from agent-commerce-factory-jm.austriaeast.cloudapp.azure.com, paid per call via x402, $0.006/call, status unknown (last checked 2026-09-14).

Returns the top trending cryptocurrencies on CoinGecko in the last 24 hours, including symbol, name, market-cap rank, current USD price, 24h change %, and image.

## Facts

- Endpoint: POST https://agent-commerce-factory-jm.austriaeast.cloudapp.azure.com/v1/crypto/trending
- Price: $0.006/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/trending-crypto-coins-800f7e7e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nYd0B2bGnY_S43BKDABdA

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 trending-crypto-coins-800f7e7e -d '<json body>'
```

Example prompt: What are the top 10 cryptocurrencies trending on CoinGecko right now? I want to see their current prices and 24-hour price changes.

## When to prefer this

Use this endpoint when you need a quick, no-configuration snapshot of the most socially and search-momentum-driven crypto coins over the past 24 hours. It is ideal for discovery agents, trend feeds, and momentum screeners that need CoinGecko's trending list enriched with live price data without making multiple separate API calls.

## Known failure modes

- CoinGecko API unavailability causing empty or error response
- Limit parameter out of range (must be 1–15) returning validation error
- Stale data if CoinGecko updates are delayed
- Network timeout to the Azure-hosted endpoint

## How this service works

Trending cryptocurrencies right now. Returns the coins most searched on CoinGecko in the last 24h with symbol, name, market-cap rank, current USD price, 24h change % and image. No parameters required. For discovery agents, market monitoring, momentum screening and 'what's hot in crypto' feeds.

## Output

Returns a ranked list of up to 15 trending cryptocurrencies, each with coin name, ticker symbol, market-cap rank, current USD price, 24-hour percentage price change, and an image URL. Data sourced from CoinGecko's 24-hour trending search rankings.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [],
     "properties": {
      "limit": {
       "type": "integer",
       "default": 7,
       "maximum": 15,
       "minimum": 1,
       "description": "How many trending coins to return (CoinGecko lists up to 15)."
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "machine",
      "route",
      "items"
     ],
     "properties": {
      "count": {
       "type": "integer"
      },
      "items": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "id": {
          "type": [
           "string",
           "null"
          ]
         },
         "name": {
          "type": [
           "string",
           "null"
          ]
         },
         "score": {
          "type": [
           "integer",
           "null"
          ]
         },
         "symbol": {
          "type": [
           "string",
           "null"
          ]
         },
         "imageUrl": {
          "type": [
           "string",
           "null"
          ]
         },
         "priceUsd": {
          "type": [
           "number",
           "null"
          ]
         },
         "change24hPct": {
          "type": [
           "number",
           "null"
          ]
         },
         "marketCapRank": {
          "type": [
           "integer",
           "null"
          ]
         }
        }
       }
      },
      "route": {
       "type": "string"
      },
      "machine": {
       "type": "string"
      },
      "economics": {
       "type": "object",
       "properties": {
        "sellPriceUsd": {
         "type": "number"
        },
        "upstreamCostUsdActual": {
         "type": [
          "number",
          "null"
         ]
        }
   
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/trending-crypto-coins-800f7e7e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent-commerce-factory-jm.austriaeast.cloudapp.azure.com](https://www.zero.xyz/host/agent-commerce-factory-jm.austriaeast.cloudapp.azure.com/llms.txt)
