# SolProbe Pulse Plus – Solana Token Social Sentiment & Structural Intelligence

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

Returns a multi-cohort Twitter sentiment signal and on-chain structural snapshot for a specific Solana token (or a broad market pulse), classified as BULLISH, MIXED, or NEUTRAL per audience segment.

## Facts

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

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-pulse-plus-solana-token-social-sentiment-structural-bf1241e1 -d '<json body>'
```

Example prompt: What's the current social pulse on $BONK right now — break it down by degens, analysts, and ecosystem accounts, and tell me if the token's mint and freeze authorities have been revoked.

## When to prefer this

Use this endpoint when you need per-cohort Twitter sentiment (degens vs analysts vs ecosystem) combined with on-chain structural risk data for a specific Solana token, in a single call. Prefer it over generic sentiment APIs when the target asset is a Solana token and you need both social signal classification and token authority/risk metadata in one response.

## Known failure modes

- Unknown or unlisted token symbol returns reduced data quality or no results
- Invalid mint address format may cause a 400 or empty response
- Broad-mode omitting symbol returns market-wide pulse which may not match token-specific intent
- Low tweet volume may result in data_quality downgrade (e.g. PARTIAL instead of FULL)
- Payment failure via x402 or escrow results in 402 Payment Required with no data returned

## 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

Returns a JSON object with an overall sentiment signal (BULLISH, MIXED, or NEUTRAL), per-cohort breakdowns (degen, analyst, ecosystem) each with their own signal and tweet count, a natural-language summary, total tweet count, data quality rating, schema version, and an on-chain structural snapshot including structural risk grade and whether mint/freeze authorities are revoked.

## Example request

```json
{
 "symbol": "BONK"
}
```

## 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",
  "cohorts": {
   "degen": {
    "signal": "BULLISH",
    "tweet_count": 12
   },
   "analyst": {
    "signal": "MIXED",
    "tweet_count": 8
   },
   "ecosystem": {
    "signal": "NEUTRAL",
    "tweet_count": 10
   }
  },
  "summary": "Bullish pulse on $BONK is led by the degen cohort while analyst tone is mixed; ecosystem voices stay neutral. Structural snapshot is grade-B with both authorities revoked.",
  "tweet_count": 30,
  "data_quality": "FULL",
  "schema_version": "2.0",
  "structural_snapshot": {
   "structural_risk_grade": "B",
   "mint_authority_revoked": true,
   "freeze_authority_revoked": true
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/solprobe-pulse-plus-solana-token-social-sentiment-structural-bf1241e1/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)
