# GoCreative Crypto Trending

> GoCreative Crypto Trending is a paid API for AI agents from api.gocreativeai.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-08).

Returns the current list of trending cryptocurrencies from CoinGecko, including price, 24h change, and market cap rank

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/crypto/trending/%7Barg%7D
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-08
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-crypto-trending-e5057117
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_odS1DUk7bliyvAm0q5qEd

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 gocreative-crypto-trending-e5057117
```

Example prompt: What cryptocurrencies are trending right now? Show me the current CoinGecko trending list with their prices and 24-hour percentage changes — search for 'bitcoin' as the context.

## When to prefer this

Use this endpoint when you need a live snapshot of which crypto coins are currently trending on CoinGecko, including real-time price and momentum data. Prefer this over general crypto price lookups when the goal is discovery — finding what's hot right now rather than checking a specific known coin.

## Known failure modes

- Invalid or unsupported query argument returns empty or error response
- CoinGecko upstream downtime causes failure or stale data
- Payment failure (x402) if USDC balance is insufficient — returns 402 Payment Required
- Rate limiting if called excessively in a short window

## How this service works

483,000+ pay-per-call data APIs and free tools built on official sources — finance, company &amp; government data, FRED, Census, crypto, calculators. USDC on Base via x402, native MCP. No API key, no signup.

## Output

Returns a JSON object with a count of results, the source ('CoinGecko Trending'), and an array of trending coins each containing: coin ID, name, symbol, current USD price, 24h price change percentage, and market cap rank.

## Example request

```json
{
 "arg": "bitcoin"
}
```

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "input"
     ],
     "properties": {
      "input": {
       "type": "string",
       "description": "endpoint argument"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gocreative-crypto-trending-e5057117/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.gocreativeai.com](https://www.zero.xyz/host/api.gocreativeai.com/llms.txt)
