# 402.com.tr Token Momentum

> 402.com.tr Token Momentum is a paid API for AI agents from 402.com.tr, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-16).

Returns price change and trading volume across 1h, 6h, and 24h windows for a Base token, plus a directional trend label from strong_up to strong_down.

## Facts

- Endpoint: GET https://402.com.tr/api/x402/token-momentum
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/402-com-tr-token-momentum-1ded739c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TEXlchz0Hc4cEVYpyqVLz

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 402-com-tr-token-momentum-1ded739c
```

Example prompt: What's the current momentum for the Base token at contract address 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 — give me the price changes across 1h, 6h, and 24h windows and tell me whether it's trending strong up, neutral, or strong down.

## When to prefer this

Use this endpoint when you need multi-window momentum context (1h, 6h, 24h) for a Base token rather than a simple 24h price snapshot. It is ideal for agents making trading decisions, alerting on trend reversals, or comparing short vs. long window momentum with a single call.

## Known failure modes

- Invalid or non-Base contract address returns an error or empty result
- Token not listed on supported DEX data sources returns no data
- Network timeout if on-chain data is slow to aggregate
- Malformed address string causes a 400-level error

## How this service works

Price change and trading volume across 1h, 6h and 24h windows for a Base token, plus a trend read (strong_up → strong_down). Lets agents gauge momentum, not just a single 24h number.

## Output

Returns price percentage changes for 1h, 6h, and 24h windows, trading volume data, and a trend label (e.g. strong_up, up, neutral, down, strong_down) for the specified Base token contract address.

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "description": "Token contract address"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/402-com-tr-token-momentum-1ded739c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 402.com.tr](https://www.zero.xyz/host/402.com.tr/llms.txt)
