# ChainRay Token Momentum Predictor

> ChainRay Token Momentum Predictor is a paid API for AI agents from chainray.online, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Predicts near-term price momentum for tokens on a specified blockchain network using on-chain intelligence signals.

## Facts

- Endpoint: GET https://chainray.online/predict/token-momentum
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/chainray-token-momentum-predictor-662579d3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kCBJvUZxs3j4Y_nqYlSuG

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 chainray-token-momentum-predictor-662579d3
```

Example prompt: What's the current token momentum outlook on Base right now — are there any bullish momentum signals I should know about?

## When to prefer this

Use this endpoint when you need forward-looking token momentum signals derived from on-chain data for a specific blockchain. Prefer over generic price feeds when you want predictive/directional signals rather than spot prices. Best for trading decision support, DeFi strategy, or alert systems on supported chains like Base, Ethereum, or Polygon.

## Known failure modes

- Unsupported chain identifier returns 400 or empty result
- Missing required chain parameter causes validation error
- Network or RPC data unavailability may return stale or error response
- Rate limiting or payment failure (x402) blocks access

## How this service works

The most complete blockchain data and intelligence service for AI agents. 93 endpoints across 46 chains, from gas fees to DeFi analytics, with real-time streams, intent routing, and verifiable proofs. Pay-per-request via x402.

## Output

Returns a momentum prediction or scoring for tokens on the specified blockchain, including directional signals (bullish/bearish), momentum strength, and potentially confidence metrics derived from on-chain data.

## Example request

```json
{
 "query": "{\\\"input\\\": {\\\"type\\\": \\\"http\\\", \\\"method\\\": \\\"GET\\\", \\\"queryParams\\\": {\\\"chain\\\": \\\"base\\\"}}}"
}
```

## 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": {
      "chain": {
       "type": "string",
       "description": "Blockchain network (e.g., base, ethereum, polygon)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/chainray-token-momentum-predictor-662579d3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from chainray.online](https://www.zero.xyz/host/chainray.online/llms.txt)
