# Agent Signals Momentum Endpoint — Crypto Market Intelligence (x402)

> Agent Signals Momentum Endpoint — Crypto Market Intelligence (x402) is a paid API for AI agents from cryptojp.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns momentum-based market intelligence signals (RSI, returns, trend regime) for a given crypto asset, settled via x402 micropayment in USDC.

## Facts

- Endpoint: GET https://cryptojp.com/v1/momentum
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-signals-momentum-endpoint-crypto-market-intelligence-x402-a7e8f94d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cCRIF4cIjBy6wV5yPBbQi

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 agent-signals-momentum-endpoint-crypto-market-intelligence-x402-a7e8f94d
```

Example prompt: What's the current momentum signal for SOL — give me the RSI, recent returns, and whether it's in a bullish, neutral, or bearish regime.

## When to prefer this

Use this endpoint when an AI trading agent needs a quick, pay-per-call momentum assessment for a specific crypto asset without a subscription. Ideal for autonomous agents that need RSI, trend regime, and return data in a single call, especially when operating on x402 micropayment rails. Prefer this over full-featured exchange APIs when cost-per-call economics matter and the agent only needs signal data, not order execution.

## Known failure modes

- Missing or invalid 'symbol' query parameter returns a 400 error
- Unknown or unsupported asset symbol may return an error or empty result
- Payment not settled via x402 protocol results in 402 Payment Required response
- Network or upstream data source outage may return 500 or timeout
- Symbol provided in wrong format (e.g. 'BTCUSD' instead of 'BTC') may yield unexpected results

## How this service works

Pay-per-call crypto market-intelligence API for autonomous AI trading agents. Funding-rate, BTC lead-lag and trend/chop regime signals, settled in USDC over x402.

## Output

A JSON object containing the base asset symbol, 1-hour RSI value, a categorical signal (e.g. neutral/bullish/bearish), percentage returns over 1h/24h/7d, and a human-readable interpretation string summarizing the momentum picture.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "symbol": "BTC"
  }
 },
 "output": {
  "type": "object"
 }
}
```

## 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": [
      "symbol"
     ],
     "properties": {
      "symbol": {
       "type": "string",
       "description": "Base asset symbol, e.g. BTC, ETH, SOL."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "base": "SOL",
  "rsi1h": 58.2,
  "signal": "neutral",
  "return1hPct": 0.34,
  "return7dPct": 6.8,
  "return24hPct": -1.2,
  "interpretation": "RSI(1h) 58 = neutral. Returns: 24h -1.2%, 7d 6.8%."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-signals-momentum-endpoint-crypto-market-intelligence-x402-a7e8f94d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cryptojp.com](https://www.zero.xyz/host/cryptojp.com/llms.txt)
