# Predge Whale Data API – Market Whale Activity by Condition ID

> Predge Whale Data API – Market Whale Activity by Condition ID is a paid API for AI agents from x402-api-production-266e.up.railway.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Returns whale trades, smart-money signals, volume summary, and wallet scores for a specific Polymarket prediction market over the last 7 days.

## Facts

- Endpoint: GET https://x402-api-production-266e.up.railway.app/v1/whales/market/%7BconditionId%7D
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/predge-whale-data-api-market-whale-activity-by-condition-id-5f7cf57c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kvLlG9kRbleup0ex9Ec8U

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 predge-whale-data-api-market-whale-activity-by-condition-id-5f7cf57c
```

Example prompt: Pull the whale trade activity for the Polymarket market with condition ID 0x178a746e2b342c25b1d78d0f0d0ea77157c9b6d40b2e97ffbf827cd7f9994c39 — I want to see which high-scoring wallets are buying YES or NO, the net dollar flow, and total whale volume over the last 7 days.

## When to prefer this

Use this endpoint when you need per-market whale and smart-money trade data for a specific Polymarket condition, including individual wallet-level signals with win rates and wallet scores. Prefer this over the top-movers or top-wallets endpoints when you already have a specific condition ID and want deep per-trade detail rather than a cross-market or cross-wallet ranking view.

## Known failure modes

- Invalid or malformed conditionId returns an error or empty result
- Market not found on Polymarket returns no data
- Payment failure via x402 protocol blocks the response
- Data delay of up to 15 minutes means very recent trades may be missing
- conditionId for a resolved or delisted market may return stale or empty trade arrays

## How this service works

Polymarket whale trades and smart-money signals from the Predge tracking pipeline, sold per-call over the x402 payment protocol. No API keys, no accounts.

## Output

Returns a JSON object with: (1) market metadata (title, status, category, yes_price, condition_id), (2) an array of individual whale trades each with side, price, wallet address, transaction hash, size in USD, wallet score, block timestamp, and 30-day wallet win rate, and (3) a summary with net_flow_usd, whale_trades count, yes/no volume USD, unique_wallets, and total whale_volume_usd — all covering a 7-day window with a 15-minute data delay.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "market": {
   "title": "Will the Fed cut rates in September?",
   "status": "active",
   "category": "economics",
   "platform": "polymarket",
   "yes_price": 0.62,
   "condition_id": "0x178a746e2b342c25b1d78d0f0d0ea77157c9b6d40b2e97ffbf827cd7f9994c39"
  },
  "trades": [
   {
    "side": "yes",
    "price": 0.62,
    "wallet": "0x8dab6cf42d7e4d1cd6cca897b9e12a8cbe6d69e8",
    "tx_hash": "0x6a7de5…",
    "category": "economics",
    "platform": "polymarket",
    "size_usd": 25400,
    "market_slug": "fed-rate-cut-september",
    "condition_id": "0x178a746e2b342c25b1d78d0f0d0ea77157c9b6d40b2e97ffbf827cd7f9994c39",
    "market_title": "Will the Fed cut rates in September?",
    "wallet_score": 81,
    "block_timestamp": "2026-07-17T09:41:02.000Z",
    "wallet_win_rate_30d": 0.67
   }
  ],
  "summary": {
   "net_flow_usd": 168000,
   "whale_trades": 14,
   "no_volume_usd": 122000,
   "unique_wallets": 9,
   "yes_volume_usd": 290000,
   "whale_volume_usd": 412000
  },
  "window_days": 7
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/predge-whale-data-api-market-whale-activity-by-condition-id-5f7cf57c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-api-production-266e.up.railway.app](https://www.zero.xyz/host/x402-api-production-266e.up.railway.app/llms.txt)
