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. New users get a 7-day free trial with full access — no credit card required.

Listed on ClawHub

Get Started in 30 Seconds

Get a free API key from our Telegram bot, then start your 7-day trial. 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"
7-day free trial with full access. No credit card required. Premium or active trial needed for data endpoints.

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, tier (premium/trial/free), premium status, 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} Premium

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

Bearer token · Premium or trial
GET /v1/score/{wallet} Premium

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

Bearer token · Premium or trial
GET /v1/trades/{wallet} Premium

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

Bearer token · Premium or trial
GET /v1/leaderboard Premium

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

Bearer token · Premium or trial
GET /v1/discover Premium

Random elite trader from a curated pool of 250+ wallets

Bearer token · Premium or trial
GET /v1/hot-bets Premium

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

Bearer token · Premium or trial
GET /v1/strategy Premium

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

Bearer token · Premium or trial
GET /v1/portfolio New Premium

Get your tracked wallet portfolio (paginated)

Bearer token · Premium or trial
POST /v1/portfolio New Premium

Add a wallet to your tracked portfolio with an optional nickname

Bearer token · Premium or trial
DELETE /v1/portfolio/{wallet} New Premium

Remove a wallet from your tracked portfolio

Bearer token · Premium or trial
GET /health

System health check

No auth required

Per-User Request Caps

Each API key gets a sliding-window per-minute budget. Limits apply identically to the REST API and the MCP HTTP transport — both share the same counter.

300 req/min
Premium

Active paid subscription. Burstable up to 300 requests in any rolling 60-second window.

30 req/min
Trial & Free

7-day free trial users and lapsed subscribers. 30 requests in any rolling 60-second window.

Exceeding your cap returns HTTP 429 with a Retry-After: 60 header. The window is sliding, not fixed — back off for ~60 seconds and you'll be unblocked. Limits are per API key (keyed on your user ID), so regenerating your key does not reset the counter.

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 and current tier (premium/trial/free). Does not consume quota.

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.