# Vibe Springs Crypto News Pulse

> Vibe Springs Crypto News Pulse is a paid API for AI agents from vibesprings.net, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns synthesized news coverage metrics, volume velocity, and sentiment aggregates for specified crypto topics over a sliding time window

## Facts

- Endpoint: GET https://vibesprings.net/api/news/pulse
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vibe-springs-crypto-news-pulse-35b35bfa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_22LC5_Z2Bb2GcSRFxD9Kz

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 vibe-springs-crypto-news-pulse-35b35bfa
```

Example prompt: What's the current news pulse for 'bitcoin,etf' — give me the volume velocity and sentiment over the last 24h?

## When to prefer this

Use this endpoint when you need real-time or near-real-time aggregated news metrics — coverage volume, velocity, and sentiment — for specific crypto keywords over defined short timeframes. Prefer this over raw news feeds when you need pre-computed analytics rather than individual articles. Best suited for monitoring media momentum, detecting news spikes, or scoring sentiment around specific tokens or crypto topics.

## Known failure modes

- Missing required 'topic' query parameter returns a 400 error
- Invalid window value (not '1h', '6h', or '24h') may return an error or default behavior
- No news found for obscure topic returns empty or zero-value metrics
- Payment not processed (x402) results in 402 Payment Required response
- Rate limiting or quota exceeded returns a 429 error

## How this service works

Synthesized news coverage metrics, volume velocity indicators, and sentiment aggregates for targeted crypto topics over sliding window timeframes.

## Output

Returns synthesized metrics including news coverage volume, velocity of news acceleration, and sentiment aggregates (positive/negative/neutral signals) for the specified crypto topic keywords over the requested sliding window timeframe (1h, 6h, or 24h).

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "topic"
     ],
     "properties": {
      "topic": {
       "type": "string",
       "description": "Comma-separated keywords (e.g. 'bitcoin,etf')"
      },
      "window": {
       "type": "string",
       "description": "Timeframe window '1h', '6h', '24h'"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "topic": "bitcoin",
  "window": "6h",
  "velocity": {
   "prior": 4,
   "ratio": 3,
   "current": 12
  },
  "sentiment": {
   "mean": 0.32,
   "label": "bullish",
   "distribution": {
    "bearish": 0.1,
    "bullish": 0.6,
    "neutral": 0.3
   }
  },
  "topSources": [
   {
    "count": 5,
    "source": "CoinDesk"
   },
   {
    "count": 4,
    "source": "Blockworks"
   }
  ],
  "articleCount": 12,
  "clusterCount": 12,
  "topHeadlines": [
   {
    "link": "https://example.com",
    "title": "Bitcoin Breaks Out Above $100k",
    "source": "CoinDesk",
    "sentimentLabel": "bullish"
   }
  ],
  "synthesizedAt": "2026-07-03T18:00:00Z",
  "processingTime": "18ms"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vibe-springs-crypto-news-pulse-35b35bfa/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vibesprings.net](https://www.zero.xyz/host/vibesprings.net/llms.txt)
