# SolProbe News Pulse — Solana Token Social Sentiment

> SolProbe News Pulse — Solana Token Social Sentiment is a paid API for AI agents from api.solprobe.xyz, paid per call via x402, $0.01/call, status down (last checked 2026-09-15).

Returns real-time Twitter/X social sentiment signal (bullish/bearish/neutral) and top tweets for a specific Solana token or the broader Solana market.

## Facts

- Endpoint: POST https://api.solprobe.xyz/news/pulse
- Price: $0.01/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/solprobe-news-pulse-solana-token-social-sentiment-c5b8e362
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_34DglIJfi-2ZPKOsJlJgp

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 solprobe-news-pulse-solana-token-social-sentiment-c5b8e362 -d '<json body>'
```

Example prompt: What's the current social sentiment for $BONK on Solana crypto Twitter — is it bullish or bearish, and what are people saying?

## When to prefer this

Use this endpoint when you need real-time social sentiment and Twitter chatter analysis for a specific Solana token (by cashtag or mint address) or want a broad Solana market pulse, especially when you want a structured bullish/bearish/neutral signal with supporting tweet evidence rather than raw social data. Prefer over generic crypto news APIs when Solana-specific, Twitter-sourced sentiment intelligence is needed with no account registration required.

## Known failure modes

- Unknown or very low-volume token symbol returns low data quality or empty tweet set
- Invalid mint address format returns an error or empty result
- Broad-mode pulse may include noise if no symbol is specified
- Payment failure (insufficient USDC) returns HTTP 402 before data is delivered
- Rate limiting or upstream Twitter API outage may degrade data quality

## How this service works

AI-callable Solana token intelligence. Pay per call via x402 USDC on Base or Solana, or Virtuals ACP escrow. No accounts, no keys, no subscription.

## Output

A JSON object containing a sentiment signal (BULLISH/BEARISH/NEUTRAL), bull/bear/neutral tweet counts, top trending terms, a list of top tweets with text, likes, retweets, and author handle, plus a data quality rating and schema version — all for the requested Solana token or the broader Solana-Twitter cohort.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "symbol": {
   "type": "string",
   "description": "Optional. Token cashtag (e.g. BONK, $BONK) or Solana mint address (base58). Omit for broad-mode market pulse across the curated Solana-Twitter cohort."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "mode": "symbol",
  "signal": "BULLISH",
  "cashtag": "BONK",
  "top_terms": [
   "pump",
   "🚀",
   "moon"
  ],
  "bear_count": 2,
  "bull_count": 6,
  "top_tweets": [
   {
    "id": "1234567890123456789",
    "text": "$BONK is mooning, easy 10x 🚀",
    "like_count": 1200,
    "author_handle": "exampleTrader",
    "retweet_count": 240
   }
  ],
  "tweet_count": 10,
  "data_quality": "FULL",
  "neutral_count": 2,
  "schema_version": "2.0"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/solprobe-news-pulse-solana-token-social-sentiment-c5b8e362/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.solprobe.xyz](https://www.zero.xyz/host/api.solprobe.xyz/llms.txt)
