Solana token intelligence API: safety analysis, holder networks, social research, and trending tokens via x402 micropayments.
What it does
Deepnets API is a Solana-focused token intelligence service that exposes safety analysis, wallet-funding-network detection, holder breakdowns, social research, and token discovery endpoints. It traces on-chain funding relationships across multiple hops to uncover hidden wallet networks — groups of wallets sharing a common funding source that may indicate coordinated activity such as insider bundling, sybil attacks, or rug-pull setups. Key data points include overall safety level (SAFE/OK/RISKY/DANGEROUS), top network ownership percentage, mintable/freezable flags, critical risks, and warnings.
The API offers roughly 18 endpoints organized into safety, holder analysis, wallet/network investigation, social research, and discovery categories. Basic read endpoints cost $0.01 per call; deep holder-analysis endpoints cost $0.15 per call. Payment is handled via the x402 protocol using USDC on Solana — no account is required. Alternatively, callers can authenticate with an API key (generated at deepnets.ai) where reads are included and new research jobs cost 1 credit (purchased by burning $DNET tokens on-chain). Rate limits are 30 req/min for x402 callers and 120 req/min for API-key users.
The specific endpoint listed here — `/api/clean-trending-tokens` — is part of the token discovery surface and returns recently discovered tokens that passed the safety screen. Note that during probing this endpoint returned 401 rather than the expected 402 x402 challenge, which may indicate it requires an API key rather than supporting x402 pay-per-call, or that the x402 challenge format differs from the probe's expectations. The broader Deepnets API is well-documented with a full OpenAPI spec and Redocly-hosted docs.
Capabilities
Use cases
- —Screening Solana tokens for rug-pull risk before trading or listing
- —Investigating wallet funding networks to detect coordinated insider activity
- —Monitoring a watchlist of safety-screened high-volume tokens
- —Generating AI social-research reports on a token's Twitter/Telegram presence
- —Building automated trading bots that gate entries on safety scores
Fit
Best for
- —AI agents that need programmatic Solana token risk scoring
- —DeFi applications integrating on-chain safety checks
- —Researchers investigating wallet-network concentration on Solana
- —Trading bots requiring pre-trade token due diligence
Not for
- —Non-Solana blockchains (Ethereum, Bitcoin, etc.)
- —Real-time price feeds or DEX order-book data
- —Portfolio tracking or tax reporting
Quick start
# Returns 402 with x402 payment challenge; use an x402 client to settle automatically
curl -i https://api.deepnets.ai/api/token-safety/So11111111111111111111111111111111111111112
# Or use an API key:
curl -H "x-api-key: YOUR_KEY" \
https://api.deepnets.ai/api/token-safety/So11111111111111111111111111111111111111112Example
Response
{
"mint": "So11111111111111111111111111111111111111112",
"warnings": [
"Top-10 holders own >15%"
],
"isMintable": false,
"isFreezable": false,
"totalHolders": 54321,
"criticalRisks": [],
"topTenOwnership": 15.8,
"overallSafetyLevel": "OK",
"topHolderOwnership": 2.1,
"topNetworkOwnership": 4.2,
"topNetworkWalletCount": 12
}Endpoint
Quality
The broader Deepnets API has a full OpenAPI spec, detailed Redocly docs, clear pricing, and well-defined schemas. However, the specific /api/clean-trending-tokens endpoint is not explicitly documented in the OpenAPI spec provided (it appears only in the docs sidebar as 'Get new clean tokens'), and the probe returned 401 instead of the expected 402 x402 challenge, so liveness via x402 is unconfirmed for this particular path. Score reflects strong surrounding documentation but uncertainty about this specific endpoint's x402 support.
Warnings
- —The /api/clean-trending-tokens endpoint returned HTTP 401 (not 402) during probing, suggesting it may require an API key rather than supporting x402 pay-per-call.
- —This specific endpoint path is not present in the OpenAPI spec paths; the closest match is 'Get new clean tokens' listed in the docs sidebar without a detailed schema.
- —The root URL (api.deepnets.ai) returns 404, which is expected for an API-only domain.
Citations
- —Deepnets API provides AI-powered token safety analysis for Solana tokens, surfacing hidden wallet networks, bundle detection, holder concentration risks, and social research.https://api.deepnets.ai/docs
- —Basic read endpoints cost $0.01 per call; holder analysis endpoints cost $0.15 per call via x402 USDC on Solana.https://api.deepnets.ai/docs
- —Rate limits are 30 req/min for x402 callers and 120 req/min for API-key users.https://api.deepnets.ai/docs
- —Credits for new research are purchased by burning $DNET tokens on-chain.https://api.deepnets.ai/docs
- —The API accepts two authentication methods: API key (x-api-key header) and x402 pay-per-call (X-PAYMENT header).https://api.deepnets.ai/docs
- —Deep funding network analysis follows money across multiple hops to find the root funder wallet.https://api.deepnets.ai/docs