# Coin Railz Token Sentiment Analysis

> Coin Railz Token Sentiment Analysis is a paid API for AI agents from coinrailz.com, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-16).

Returns social sentiment score, momentum indicator, and bullish/bearish/neutral sentiment classification for a given crypto token symbol

## Facts

- Endpoint: POST https://coinrailz.com/x402/service/token-sentiment
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/coin-railz-token-sentiment-analysis-45ee5030
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EA8p9t4qzDf1FCfRg7PPe

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 coin-railz-token-sentiment-analysis-45ee5030 -d '<json body>'
```

Example prompt: What's the current social sentiment and momentum for PEPE on Ethereum right now — is it bullish, bearish, or neutral and what's the sentiment score?

## When to prefer this

Use this endpoint when an agent needs real-time social sentiment signals for a specific crypto token, especially for trading decisions, market mood checks, or when incorporating sentiment momentum into portfolio or trading strategies. Prefer this over general news APIs when you need a quantified -100 to 100 score and directional momentum classification specific to crypto tokens.

## Known failure modes

- Unknown or unsupported token symbol returns error or null data
- Unsupported chain value may fall back to Ethereum default or return an error
- Low social activity tokens may return neutral score with limited signal confidence
- Missing required tokenSymbol field returns validation error
- Service unavailable or rate limited returns HTTP 402 or 5xx error

## How this service works

Social sentiment analysis for tokens with momentum indicators and activity levels

## Output

Returns a sentiment score from -100 to 100, a momentum indicator string (e.g. trending up/down), and a categorical sentiment label (Bullish, Bearish, or Neutral) for the requested token.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "tokenSymbol"
 ],
 "properties": {
  "chain": {
   "type": "string",
   "description": "Blockchain network (optional, default: ethereum)"
  },
  "tokenSymbol": {
   "type": "string",
   "description": "Token symbol (e.g., BTC, ETH, PEPE)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "score": {
   "type": "number",
   "description": "Sentiment score -100 to 100"
  },
  "momentum": {
   "type": "string",
   "description": "Trending momentum indicator"
  },
  "sentiment": {
   "type": "string",
   "description": "Bullish/Bearish/Neutral"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/coin-railz-token-sentiment-analysis-45ee5030/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from coinrailz.com](https://www.zero.xyz/host/coinrailz.com/llms.txt)
