Overview

The Alpha Hunter API provides programmatic access to the same trader analytics available in the web app. Query trader statistics, search by filters, and look up individual wallet performance across Solana.

Base URL

The API base URL will be displayed on your Profile pagearrow-up-right after you subscribe to the Premium API plan.

Quick Start

# Check your credit balance
curl -H "x-api-key: YOUR_API_KEY" \
  YOUR_API_BASE_URL/api/credits

# Search for top traders by PnL
curl -H "x-api-key: YOUR_API_KEY" \
  "YOUR_API_BASE_URL/api/traders?sort_by=pnl&sort_dir=desc&page_size=10"

# Get a specific trader's token breakdown
curl -H "x-api-key: YOUR_API_KEY" \
  YOUR_API_BASE_URL/api/trader/WALLET_ADDRESS

Requirements

  • Plan: Premium API subscription required

  • API Key: Generate from your Profile pagearrow-up-right (one key per account)

  • Rate Limits: 15 requests/minute, 1 request/second

  • Monthly Credits: 50,000 requests/month, resets on the 1st of each month (UTC)

Last updated