# Vibe Springs Crypto News Feed with Sentiment Analysis

> Vibe Springs Crypto News Feed with Sentiment Analysis is a paid API for AI agents from vibesprings.net, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-13).

Returns a real-time aggregated cryptocurrency news feed with lexicon-based sentiment scores and cross-outlet story clustering, filterable by topic, time range, and sentiment bands.

## Facts

- Endpoint: GET https://vibesprings.net/api/news/crypto
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vibe-springs-crypto-news-feed-with-sentiment-analysis-b2846234
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-GmdQUqzge0mbLgWK5xgm

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-feed-with-sentiment-analysis-b2846234
```

Example prompt: Pull the top 10 Bitcoin and Ethereum news articles from the last 6 hours and only show me the ones with a positive sentiment score above 0.3.

## When to prefer this

Choose this endpoint when you need real-time cryptocurrency news with sentiment scoring baked in, especially when you want to filter by mood (bullish/bearish) or cluster related stories across multiple outlets. Prefer it over generic news APIs when crypto-specific topic filtering and sentiment bands are required in a single call.

## Known failure modes

- Invalid 'since' format returns a 400 error — use ISO timestamp or shorthands like '1h', '6h', '24h'
- minSentiment or maxSentiment out of range (-1 to 1) returns a 400 validation error
- limit exceeding 50 returns a 400 error
- No articles matching the filters returns an empty result set
- Payment failure (x402) returns a 402 response requiring valid USDC payment
- Topic keyword with no matching articles returns empty array

## How this service works

Real-time aggregated cryptocurrency news feed with lexicon-based sentiment analysis and cross-outlet story clustering. Filters by topic, time-range, and sentiment bands.

## Output

A list of up to 50 aggregated crypto news articles, each with a sentiment score between -1 and 1, publication timestamp, source outlet, and story cluster grouping. Results are filtered by the requested topic keywords, time range, and sentiment band.

## 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",
     "properties": {
      "limit": {
       "type": "integer",
       "description": "Max articles to return (1-50, default 20)"
      },
      "since": {
       "type": "string",
       "description": "ISO timestamp or shorthand '1h', '6h', '24h'"
      },
      "topic": {
       "type": "string",
       "description": "Comma-separated keywords (e.g. 'bitcoin,ethereum')"
      },
      "maxSentiment": {
       "type": "number",
       "description": "Maximum sentiment score (-1 to 1)"
      },
      "minSentiment": {
       "type": "number",
       "description": "Minimum sentiment score (-1 to 1)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "meta": {
   "returned": 1,
   "sourcesDown": 1,
   "oldestArticle": "2026-07-03T18:00:00Z",
   "totalMatching": 1,
   "sourcesHealthy": 9,
   "freshestArticle": "2026-07-03T18:00:00Z"
  },
  "articles": [
   {
    "id": "a1b2c3d4",
    "link": "https://example.com/btc-100k",
    "title": "Bitcoin Breaks Out Above $100k Amid Strong ETF Inflows",
    "source": "CoinDesk",
    "summary": "Bitcoin surged past the historic $100k mark today as ETF inflows set new records.",
    "sourceId": "coindesk",
    "publishedAt": "2026-07-03T18:00:00Z",
    "scoredTerms": [
     "breakout",
     "surge",
     "strong"
    ],
    "sourceWeight": 0.9,
    "alsoReportedBy": 2,
    "sentimentLabel": "bullish",
    "sentimentScore": 0.75
   }
  ],
  "processingTime": "15ms"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vibe-springs-crypto-news-feed-with-sentiment-analysis-b2846234/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)
