# Token Price Momentum Signal

> Token Price Momentum Signal is a paid API for AI agents from api.x402node.dev, paid per call via x402, $0.007/call, status unknown (last checked 2026-09-15).

Classifies a crypto token's 24h price momentum as pump, dump, rising, or falling with volatility flags to help trading agents time breakouts or crashes

## Facts

- Endpoint: GET https://api.x402node.dev/market/token-momentum
- Price: $0.007/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/token-price-momentum-signal-9a955b53
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ImqsqiLYkAv7aEs8gtSAF

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 token-price-momentum-signal-9a955b53
```

Example prompt: Is ETH currently pumping or dumping? Give me the momentum classification and volatility flag from live 24h price data right now.

## When to prefer this

Choose this endpoint when you need a pre-computed, classified momentum signal rather than raw price data — it saves the agent from computing 24h change interpretation logic itself. Prefer it over generic ticker endpoints when the goal is specifically to detect breakouts, crashes, or abnormal price momentum patterns in real time, especially in automated trading or alert workflows.

## Known failure modes

- Unknown or unsupported token symbol returns an error or empty result
- Token has insufficient trading history or volume for meaningful momentum calculation
- OKX data feed temporarily unavailable causing stale or missing data
- Payment not processed correctly resulting in 402 rejection
- Rate limit exceeded if called too frequently

## How this service works

Token price momentum signal from real-time 24h change, classifying pump/dump/rising/falling with volatility flags - a timing signal for trading agents to spot breakouts or crashes, computed from live data LLMs cannot see. token momentum, price momentum, pump detection, dump signal, price breakout, volatility signal

## Output

Returns a momentum classification label (pump/dump/rising/falling) for the requested token based on real-time 24h price change data, along with volatility flags indicating whether the move is statistically significant — providing a timing signal for trading decisions.

## 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",
     "required": [
      "address"
     ],
     "properties": {
      "chain": {
       "type": "string",
       "description": "base (default), ethereum, arbitrum, optimism, polygon"
      },
      "token": {
       "type": "string",
       "description": "ERC20 contract address (optional)"
      },
      "address": {
       "type": "string",
       "description": "Token contract (required)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/token-price-momentum-signal-9a955b53/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.x402node.dev](https://www.zero.xyz/host/api.x402node.dev/llms.txt)
