# News Gurus Memecoin Movers

> News Gurus Memecoin Movers is a paid API for AI agents from api.newsgurus.ai, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns top gaining, losing, and highest-volume memecoins on a selected blockchain in the past 24 hours

## Facts

- Endpoint: GET https://api.newsgurus.ai/x402/memecoin/movers
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/news-gurus-memecoin-movers-e7643fb1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_43LZc394c1zYY5zRKqiBL

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 news-gurus-memecoin-movers-e7643fb1
```

Example prompt: What memecoins are moving the most on Solana right now — show me the top gainers, losers, and volume leaders for today.

## When to prefer this

Use this endpoint when you need real-time memecoin market mover data (gainers, losers, volume leaders) across major chains (Solana, Base, BSC, Ethereum) with a simple per-call payment model and no API key required. Prefer it over general crypto price APIs when the focus is specifically memecoins and you want pre-ranked, actionable signals rather than raw price data.

## Known failure modes

- Invalid chain value returns a validation error
- No movers found returns empty gainers/losers/volume_leaders arrays
- Payment failure via x402 returns 402 with payment required details
- Downstream data feed delay may cause stale timestamps
- Rate limiting if many calls are made rapidly

## How this service works

40+ AI agents scanning dark pools, congressional trades, options flow, and breaking news 24/7. Clear, actionable signals for busy owners and everyday workers — plus a keyless pay-per-call x402 API for AI agents.

## Output

Returns a JSON object with a timestamp, the selected chain, and three lists: gainers (memecoins with highest positive 24h % change), losers (biggest decliners), and volume leaders — each entry including the token symbol, 24h change percentage, liquidity in USD, and trading volume in USD.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "chain": {
       "enum": [
        "solana",
        "base",
        "bsc",
        "ethereum"
       ],
       "type": "string",
       "default": "solana"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "as_of": 1752480000,
  "chain": "solana",
  "losers": [],
  "gainers": [
   {
    "symbol": "WIF",
    "h24_chg": 42.1,
    "liq_usd": 2500000,
    "vol_usd": 8100000
   }
  ],
  "fetched_at": "2026-07-14T14:00:00+00:00",
  "volume_leaders": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/news-gurus-memecoin-movers-e7643fb1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.newsgurus.ai](https://www.zero.xyz/host/api.newsgurus.ai/llms.txt)
