Build with Unlimit.pro data
Our RESTful and GraphQL APIs give you programmatic access to wallet intelligence, token health metrics, anomaly detection, and predictive insights. Designed for developers building trading tools, analytics dashboards, and automated systems.
Real-Time WebSocket
Subscribe to live data streams for wallets, tokens, and market events via WebSocket connections with sub-second latency.
Rate Limiting and Auth
API key authentication with tiered rate limits. Free: 100 req/day, Pro: 10,000 req/day, Enterprise: custom limits.
GraphQL Support
Full GraphQL endpoint alongside REST for flexible querying. Request exactly the fields you need to minimize payload size.
Versioned APIs
All endpoints are versioned (v1, v2) with guaranteed backward compatibility for 12 months after a new version ships.
Base URL
https://api.unlimit.pro/v1All API requests require an Authorization header with your API key: Authorization: Bearer YOUR_API_KEY
Endpoints
/v1/wallets/{address}Get Wallet Profile
Returns a comprehensive wallet profile including historical performance, behavioral patterns, connection maps, influence score, and risk assessment. The response includes up to 18 months of historical data with performance metrics across multiple timeframes.
Parameters
address (required) - Solana wallet addresstimeframe - 7d, 30d, 90d, 1y, all (default: 30d)include - connections, transactions, tokens (comma-separated)
Response
WalletProfile object with nested performance, connections, and risk data
/v1/wallets/{address}/transactionsGet Wallet Transactions
Returns paginated transaction history for a wallet with AI-enriched metadata including transaction classification, counterparty labels, and profit/loss calculations.
Parameters
address (required) - Solana wallet addresslimit - Results per page (1-100, default: 50)cursor - Pagination cursor from previous responsetype - swap, transfer, stake, nft, all (default: all)
Response
Paginated array of Transaction objects with AI metadata
/v1/tokens/{mint}Get Token Health
Returns comprehensive health metrics for a Solana token including composite health score, liquidity analysis across all major DEXs, holder distribution, developer activity, and market manipulation indicators.
Parameters
mint (required) - Token mint addressinclude - holders, liquidity, security, social (comma-separated)
Response
TokenHealth object with composite score and detailed breakdowns
/v1/tokens/{mint}/anomaliesGet Token Anomalies
Returns detected anomalies and risk alerts for a specific token. Our AI models scan for wash trading, unusual accumulation patterns, potential rug pull signals, and coordinated manipulation activity.
Parameters
mint (required) - Token mint addressseverity - low, medium, high, critical (default: all)since - ISO 8601 timestamp for start of lookback window
Response
Array of Anomaly objects with severity, description, and evidence
/v1/predictions/{mint}Get Predictive Insights
Returns AI-generated predictions for a token including price movement probabilities, trend signals, and sentiment analysis. Predictions include confidence intervals and are backtested against historical data.
Parameters
mint (required) - Token mint addresshorizon - 1h, 4h, 1d, 7d, 30d (default: 1d)
Response
Prediction object with probabilities, confidence, and supporting signals
/v1/alertsCreate Smart Alert
Creates a new real-time alert with customizable conditions. Supports wallet movements, token events, price thresholds, volume spikes, and anomaly triggers. Notifications are delivered via webhook, email, or Telegram.
Parameters
type (required) - wallet, token, price, anomalyconditions (required) - Object defining alert trigger ruleschannels (required) - Array of notification channelsname - Human-readable alert label
Response
Alert object with ID, status, and estimated trigger frequency
Authentication
API keys are generated from your Unlimit.pro dashboard. Each key is scoped to specific permissions and rate limits based on your subscription tier. Free tier keys allow 100 requests/day across all endpoints. Pro tier keys allow 10,000 requests/day with priority processing. Enterprise keys come with custom limits, dedicated infrastructure, and an SLA.
# Example request
curl -H 'Authorization: Bearer ulp_sk_...' \
https://api.unlimit.pro/v1/wallets/So1ana...
API access will be available with Pro and Enterprise plans. Join the waitlist for early access and API key allocation.
Request API Access