Build on Polyvision

Most users analyze wallets straight from our Telegram bot — no setup needed. These docs are for developers who want to integrate Polyvision into their own tools via REST API, MCP server, or AI agent skills. Free, no daily limits, no credit card.

Listed on ClawHub

Get Started in 30 Seconds

Get a free API key from our Telegram bot, then analyze any Polymarket wallet. Two steps. That's it.

1. Get an API key via Telegram

Open @PolyVisionBot on Telegram and type
the command below into the chat:

/apikey

The bot will reply with your API key instantly.

2. Pull today's hot bets

curl https://api.polyvisionx.com/v1/hot-bets \
  -H "Authorization: Bearer $POLYVISION_API_KEY"
No daily limits. No credit card. Free.

API Endpoints

Fourteen endpoints covering auth, analysis, scoring, trades, discovery, strategy, portfolio tracking, and health. All responses are JSON.

GET /v1/auth/me

Get current user info and usage stats

Bearer token
POST /v1/auth/regenerate

Regenerate your API key (old key invalidated)

Bearer token
POST /v1/auth/deactivate

Permanently deactivate your API key

Bearer token
GET /v1/analyze/{wallet}

Full wallet analysis — P&L, risk, score, red flags

Bearer token
GET /v1/score/{wallet}

Compact copy-trading score (1-10) with red flags

Bearer token
GET /v1/trades/{wallet}

Recent trade history — side, size, price, market, timestamps. Filter by since timestamp.

Bearer token
GET /v1/leaderboard

Daily top-10 traders with P&L, risk metrics, and copy score

Bearer token
GET /v1/discover

Random elite trader from a curated pool of 250+ wallets

Bearer token
GET /v1/hot-bets

Today's profitable open positions from top traders (paginated)

Bearer token
GET /v1/strategy

Backtested copy trading strategy profiles (conservative, moderate, aggressive)

Bearer token
GET /v1/portfolio New

Get your tracked wallet portfolio (paginated)

Bearer token
POST /v1/portfolio New

Add a wallet to your tracked portfolio with an optional nickname

Bearer token
DELETE /v1/portfolio/{wallet} New

Remove a wallet from your tracked portfolio

Bearer token
GET /health

System health check

No auth required

Connect Your AI Agent

The Model Context Protocol (MCP) lets AI assistants like Claude, Cursor, and Windsurf call Polyvision tools directly. Add one config block and your agent gains wallet analysis superpowers.

{
  "mcpServers": {
    "polyvision": {
      "type": "streamable-http",
      "url": "https://api.polyvisionx.com/mcp",
      "headers": {
        "Authorization": "Bearer ${POLYVISION_API_KEY}"
      }
    }
  }
}
{
  "mcpServers": {
    "polyvision": {
      "command": "polyvision-mcp",
      "env": {
        "POLYVISION_API_KEY": "pv_live_...",
        "DATABASE_URL": "postgresql://..."
      }
    }
  }
}

Available Tools

analyze_wallet

Run a comprehensive Polymarket wallet analysis — P&L, win rate, risk metrics, categories, copy trading score, and red flags. Quick (~5s) or full (~30-60s) mode.

get_score

Get a compact copy-trading score (1-10) with recommendation, tier, key metrics, and red flags. Shares cache with analyze_wallet.

get_recent_trades

Get recent trades for a Polymarket wallet. Returns trade history with side, size, price, market title, and timestamps. Optionally filter to trades after a given timestamp.

get_leaderboard

Get the daily top-10 traders ranked by copy score. Returns P&L, win rate, risk metrics, categories, and red flags for each trader.

discover_wallet

Discover a random elite trader from a curated pool of 250+ wallets. Great for exploration — analyze the returned wallet for full details.

get_hot_bets

Get today's most profitable open positions from top traders. Shows entry price, current price, P&L, market details, and resolution dates.

get_strategy

Get pre-computed copy trading strategy profiles. Returns 3 risk profiles (conservative, moderate, aggressive) with backtested parameters, expected metrics (win rate, ROI, Sharpe, drawdown), and plain-English descriptions. Updated daily.

get_portfolio

New

Get your tracked wallet portfolio. Returns wallet addresses, nicknames, scores, and notification settings. Paginated.

add_to_portfolio

New

Add a wallet to your tracked portfolio with an optional nickname.

remove_from_portfolio

New

Remove a wallet from your tracked portfolio.

check_quota

Check your usage statistics. Does not consume quota. API/MCP access has no daily limits.

health

Check system health. Returns "ok" or "degraded" status.

regenerate_key

Regenerate your API key. The old key is immediately invalidated. New key shown only once.

deactivate_key

Permanently deactivate your API key. Irreversible — use regenerate_key instead if you need a replacement.

Copy Trading Score System

Every wallet gets a score from 0 to 10 based on win rate, P&L, risk metrics, trade frequency, and more. Here's what each tier means.

8.0 – 10.0
Strong Copy

Consistently profitable, good risk management, strong track record.

6.0 – 7.9
Moderate Copy

Decent performance with some concerns — proceed with caution.

4.0 – 5.9
Risky Copy

Mixed results, significant red flags, high risk.

0.0 – 3.9
Don't Copy

Poor performance, major red flags, likely to lose money.