# Skopos Smart Money Tracker

> Skopos Smart Money Tracker is a paid API for AI agents from www.tryskopos.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-16).

Tracks 'smart money' wallet activity on a specified blockchain, returning buy/sell signals for a given address and token symbol over a timeframe.

## Facts

- Endpoint: POST https://www.tryskopos.xyz/api/smart-money
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/skopos-smart-money-tracker-d3b4f1c2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1xeXozWv8AVrHwUcu3UJ7

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 skopos-smart-money-tracker-d3b4f1c2 -d '<json body>'
```

Example prompt: Check Skopos smart money for wallet 0xABC123 on Ethereum — are whales buying or selling WETH right now? Show me the BUY direction signals.

## When to prefer this

Choose this endpoint when you need on-chain smart money or whale wallet signals for a specific address and chain combination, particularly when you want directional (BUY/SELL) intelligence on a token. Prefer over generic block explorers when you need pre-interpreted smart money intent rather than raw transaction data.

## Known failure modes

- Invalid or unsupported chain string returns an error
- Wallet address not found or not associated with smart money activity
- Missing required fields (address, chain, direction) returns validation error
- Unsupported token symbol returns empty or error response
- Payment failure or insufficient USDC balance blocks the request

## How this service works

Named smart-money wallets buying or selling a token, with net flow.

## Output

Returns smart money trading activity data for the specified wallet address and chain, including directional signals (BUY or SELL) for the given token symbol over the requested timeframe, helping agents assess whale sentiment and on-chain momentum.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain": {
   "type": "string",
   "minLength": 1
  },
  "symbol": {
   "type": "string"
  },
  "address": {
   "type": "string",
   "minLength": 1
  },
  "direction": {
   "enum": [
    "BUY",
    "SELL"
   ],
   "type": "string",
   "default": "BUY"
  },
  "timeframe": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/skopos-smart-money-tracker-d3b4f1c2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.tryskopos.xyz](https://www.zero.xyz/host/www.tryskopos.xyz/llms.txt)
