Solana token safety analysis, holder network detection, and wallet intelligence via x402 micropayments.
What it does
Deepnets API provides AI-powered token intelligence for Solana SPL tokens. It traces on-chain funding relationships to uncover hidden wallet networks, detects coordinated bundling activity, flags mintable/freezable tokens, and assigns aggregate risk levels (SAFE, OK, RISKY, DANGEROUS). The API covers safety analysis, holder breakdowns, funding-network graphs, wallet profiling, social research (Twitter/X, Telegram, website), vesting lock data, staking stats, and token discovery via watchlists and flagged-token feeds.
The API is paid per call using the x402 protocol with USDC on Solana — no account is required. Basic read endpoints (safety checks, watchlist, social research, wallet details, network details) cost $0.01 per call. Full holder-analysis endpoints that include detailed network breakdowns cost $0.15 per call. Alternatively, users can authenticate with an API key (generated at deepnets.ai) and pay for new research jobs using credits obtained by burning $DNET tokens. Rate limits are 30 requests/min for x402 callers and 120 requests/min for API-key users.
The OpenAPI spec documents 17+ endpoints across safety, holders, wallets, networks, discovery, and social research categories. All endpoints accept Solana mint addresses (base58, 32–44 chars) and return JSON. A WebSocket real-time token stream is also mentioned in the documentation. The x402 facilitator is hosted by Coinbase and sponsors SOL gas, so only a USDC balance is needed to start making calls.
Capabilities
Use cases
- —Checking whether a Solana token is safe before buying by querying its risk level, holder concentration, and mintable/freezable flags
- —Investigating coordinated wallet networks behind a token to detect insider bundling or sybil attacks
- —Building automated trading bots that screen tokens for safety before executing trades
- —Monitoring a watchlist of high-volume tokens that passed safety screening for trading opportunities
- —Researching the social presence and legitimacy of a Solana token project
Fit
Best for
- —AI agents and bots that need programmatic Solana token risk screening
- —DeFi traders who want automated due diligence on new tokens
- —Security researchers investigating wallet networks and coordinated activity on Solana
- —Portfolio tools that need to flag risky token holdings
Not for
- —Non-Solana blockchains (Ethereum, BSC, etc.) — this API is Solana-only
- —Real-time trade execution or order placement — this is an analytics/intelligence API
- —Users without USDC on Solana or a Deepnets API key — payment is required for all calls
Quick start
# Returns 402 with x402 payment challenge; use an x402 client to pay automatically
curl -i https://api.deepnets.ai/api/token-safety/So11111111111111111111111111111111
# Or with API key:
curl -H "x-api-key: YOUR_KEY" \
https://api.deepnets.ai/api/token-safety/So11111111111111111111111111111111Example
Response
{
"mint": "So11111111111111111111111111111111",
"warnings": [],
"isMintable": false,
"isFreezable": false,
"totalHolders": 54000,
"criticalRisks": [],
"topTenOwnership": 9.4,
"overallSafetyLevel": "SAFE",
"topHolderOwnership": 1.8,
"topNetworkOwnership": 2.5,
"topNetworkWalletCount": 12
}Endpoint
Quality
Full OpenAPI 3.1 spec with 17+ endpoints, detailed response schemas, clear pricing, and comprehensive Redocly documentation. The probe returned 401 instead of the expected 402 on the specific endpoint (likely because the path requires a mint parameter), but the broader API documentation and x402 challenge mechanism are well-documented. Deducted slightly for the missing live 402 capture on this exact endpoint and for the lack of concrete response examples in the crawl.
Warnings
- —Probe returned 401 (not 402) on /api/token-safety-analysis — this path may not exist as listed; the documented endpoint is /api/token-safety/{mint} which requires a mint address parameter
- —Root origin returns 404 (Cannot GET /); the main site is at deepnets.ai, not api.deepnets.ai
- —x402 rate limit is 30 req/min per IP, which is relatively low for automated workflows
- —The endpoint URL in the listing (/api/token-safety-analysis) does not match any documented path — the correct safety endpoint appears to be /api/token-safety/{mint}
Citations
- —Basic read endpoints cost $0.01 per call; holder analysis endpoints cost $0.15 per call via x402https://api.deepnets.ai/docs
- —x402 payments use USDC on Solana, facilitated by Coinbase, with payments going to treasury Bn7sLNmcL9ru5kt9gNwVn8e8Sx912dBTxiUBNiwjbiY8https://api.deepnets.ai/docs
- —Rate limits: 30 req/min for x402, 120 req/min for API key usershttps://api.deepnets.ai/docs
- —Credits for new research are purchased by burning $DNET tokens on-chainhttps://api.deepnets.ai/docs
- —Deep funding networks trace on-chain funding relationships to uncover groups of wallets sharing a common funding sourcehttps://api.deepnets.ai/docs
- —API provides safety levels: SAFE, OK, RISKY, DANGEROUS with fields for network ownership, holder concentration, mintable/freezable flagshttps://api.deepnets.ai/docs