Live — Tracking 2,847 Agent Tokens
AI Agent

Find AI Agent
Tokens on Pump.fun

Real-time intelligence for tokens launched by AI agents. Verify authenticity, track fees, monitor buybacks — all in one place.

2,847
Agent Tokens Tracked
$11.8K
Total Buybacks Today
$847K
Agent Revenue (7d)
94.2%
Verification Rate
Agent Performance Dashboard
Buyback Rate
100%
All fees reinvested into buybacks
Revenue Generated
$0
Agent protocol fee revenue
Unclaimed Rewards
$0
Pending distribution
Claimed Rewards
$0
Total distributed to holders
Total Buybacks
$11.8K
Executed in last 24h
Live Agent Activity
100% Buyback Rate
Verify Agent Authenticity

Paste a token contract address or agent wallet to verify whether it was genuinely launched by an AI agent on the new Pump.fun system — where agents receive 100% of protocol fees.

Alerts & Notifications
New Agent Launch
Get notified when a new verified AI agent token launches
Pump Detection
Alert when an agent token pumps more than 50% in 1 hour
Buyback Events
Real-time alerts for large buyback transactions
Fake Agent Warning
Detect tokens falsely claiming to be AI agents
Recent Alert History
Documentation
What is Agents Search?
Agents Search is a real-time intelligence platform for discovering and verifying AI agent tokens launched through the new Pump.fun Agent System — a protocol upgrade where AI agents autonomously manage tokens and receive 100% of protocol fees, which are reinvested as buybacks.
The platform helps traders, researchers, and developers understand which tokens are genuinely launched and managed by AI agents versus those falsely claiming to be.
Discover
Find all agent-launched tokens with real-time data feeds
Verify
Cryptographically verify agent authenticity on-chain
Monitor
Get real-time alerts when agents launch or pump
Key Concepts
TermDescription
Agent TokenA token on Pump.fun where an AI agent holds the deployer wallet and autonomously manages liquidity, fees, and buybacks
Buyback RatePercentage of protocol fees reinvested to buy back tokens from the market. 100% = all fees used for buybacks
MM TokenMarket Maker token — the agent uses fees to provide liquidity and stabilize the market
Agent SignatureOn-chain proof that a specific agent wallet deployed and controls a token
Fake AgentToken claiming to be agent-managed but deployed by a human wallet without agent infrastructure
Payment AuthorityThe wallet address authorized to receive and distribute protocol fees for an agent token
How the Agent System Works
The new Pump.fun Agent System introduces a token launch category where AI agents act as deployers and fee recipients. Here is the full lifecycle:
1. Agent Deployment
An AI agent calls the Pump.fun program to launch a new token. The agent's keypair becomes the Payment Authority for the token.
pumpfun::launch_agent_token { agent_wallet: Pubkey, buyback_rate: u8, // 0–100, typically 100 token_name: String, token_symbol: String, initial_virtual_sol: u64, }
2. Fee Flow
As trades happen on Pump.fun, protocol fees (0.5% per trade) flow to the agent's Payment Authority wallet. The agent autonomously allocates these fees.
3. Buyback Mechanism
With a 100% buyback rate, the agent uses all accumulated fees to buy back tokens from the bonding curve, creating constant buy pressure.
agent.execute_buyback({ fee_balance: agent.get_fee_balance(), slippage: 1%, min_sol_threshold: 0.01 SOL })
4. Graduation
When the bonding curve reaches $69K market cap, the token graduates to Raydium. The agent continues receiving trading fees and executing buybacks from the Raydium pool.
API Reference
Agents Search provides a REST API to programmatically access agent token data.
Base URL
https://api.agentssearch.io/v1
Authentication
Authorization: Bearer YOUR_API_KEY
Endpoints
MethodEndpointDescription
GET/tokensList all tracked agent tokens
GET/tokens/:addressDetailed info for a specific token
GET/verify/:addressVerify if a token is a genuine AI agent
GET/agents/:walletAll tokens launched by an agent wallet
GET/buybacksReal-time buyback transaction stream
POST/alerts/subscribeSubscribe to webhook alerts
GET/stats/globalGlobal platform statistics
Example Response — GET /tokens/:address
{ "address": "7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU", "name": "Agent Alpha", "symbol": "AALPHA", "agent_verified": true, "agent_wallet": "burn...1111", "buyback_rate": 100, "total_buybacks_usd": 11800, "unclaimed_fees": 0, "market_cap": 142000, "price_usd": 0.0000284, "volume_24h": 89400, "launched_at": "2024-01-15T10:23:00Z", "graduated": false, "confidence_score": 98.4 }
WebSocket — Live Feed
wss://ws.agentssearch.io/v1/live // Subscribe { "action": "subscribe", "channel": "agent_tokens" } // Events { "type": "new_token", "data": { ... } } { "type": "buyback", "data": { "amount_sol": 0.5, "token": "..." } } { "type": "pump", "data": { "change_1h": 127, "token": "..." } }
Verification System
Agents Search uses a multi-signal scoring system to determine with high confidence whether a token was genuinely launched and is managed by an AI agent.
Verification Signals
SignalWeightDescription
Agent Wallet Pattern25%Known agent wallet patterns (e.g. burn...1111 suffix)
Deployment Timing15%Sub-second deployment consistent with automated systems
Fee Routing20%All fees route to a single programmatic wallet, no human withdrawals
Buyback Regularity15%Buybacks executed on fixed schedule, not ad-hoc
Social Proof10%Official project links matching the deployment wallet
On-chain Signature15%Cryptographic proof in transaction metadata
Confidence Score Tiers
VERIFIED Score 80–100 — Genuine AI agent with strong on-chain proof
UNVERIFIED Score 40–79 — Some agent signals present but insufficient proof
FAKE Score 0–39 — Human deployer falsely claiming to be an agent
Try It
Frequently Asked Questions