Get your token trending in Phantom Chat — reach thousands of active Solana traders directly.
Promote your token inside Phantom's built-in chat and discovery feed. Fast delivery, stealth mode, full refund guarantee.
- Platform: Phantom Wallet Chat (phantom.app)
- Placement: Chat Trending Feed
- Duration options: 6h · 12h · 24h
- Chain: Solana
- Start time: Instant (within 60 seconds)
- Guarantee: Full refund if delivery fails
| Package | Price |
|---|---|
| 6 hours | $500 |
| 12 hours | $800 |
| 24 hours | $1,200 |
| Bundle | Includes | Price |
|---|---|---|
| Starter | Trending 6h + Chat 6h + Visitors 6h | $1,700 |
| Growth | Trending 12h + Chat 12h + Visitors 12h | $2,900 |
| Full Power | Trending 24h + Chat 24h + Visitors 24h | $4,900 |
- Go to web.pandaboost.app
- Connect your wallet (EVM via WalletConnect or Solana)
- Add funds via crypto
- Open New Order → Phantom → Chat Trending
- Select duration (6h / 12h / 24h)
- Paste your token address → confirm
Open @pandaboostbot → New Order → Phantom → Chat Trending
Order Phantom Chat Trending programmatically via the PandaBoost API.
Base URL: https://web.pandaboost.app/api/v1
Auth: x-api-key: pb_... header
import requests
API_KEY = "pb_your_api_key"
BASE_URL = "https://web.pandaboost.app/api/v1"
HEADERS = {"x-api-key": API_KEY, "Content-Type": "application/json"}
order = requests.post(f"{BASE_URL}/orders", headers=HEADERS, json={
"serviceName": "phantom-chat-trending",
"orderTypeId": "12h", # 6h | 12h | 24h
"quantity": 1,
"fields": {
"token_address": "YOUR_TOKEN_ADDRESS",
"chain": "solana"
}
})
print(order.json())
# {"success": true, "data": {"order": {"publicId": "ABCD1234", "status": "processing"}, "newBalance": "..."}}const res = await fetch("https://web.pandaboost.app/api/v1/orders", {
method: "POST",
headers: { "x-api-key": "pb_your_api_key", "Content-Type": "application/json" },
body: JSON.stringify({
serviceName: "phantom-chat-trending",
orderTypeId: "24h", // 6h | 12h | 24h
quantity: 1,
fields: {
token_address: "YOUR_TOKEN_ADDRESS",
chain: "solana"
}
})
});
const data = await res.json();
console.log(data.data.order.publicId);curl -X POST -H "x-api-key: pb_..." \
-H "Content-Type: application/json" \
-d '{
"serviceName": "phantom-chat-trending",
"orderTypeId": "24h",
"quantity": 1,
"fields": {
"token_address": "ErKGCuxZeMQoS3VhFJZ77giESQphJhGpYDaUJmhApump",
"chain": "solana"
}
}' \
https://web.pandaboost.app/api/v1/orderscurl -H "x-api-key: pb_..." \
https://web.pandaboost.app/api/v1/orders/ABCD1234| Service | Price |
|---|---|
| Phantom Wallet Trending | $1,200 / 6h · $2,000 / 12h · $3,600 / 24h |
| Phantom Token Visitors | $200 / 6h · $400 / 12h · $600 / 24h |
| Service | Price |
|---|---|
| DEX Screener Reactions | $25 / 1,000 |
| DEX Screener Trending SOL | $1,200 / 12h · $1,600 / 24h |
| DEX Screener Trending ETH/BSC/Base | from $1,000 / 24h |
| DexTools Trending | available in panel |
| CoinMarketCap | available in panel |
| Coingecko & GeckoTerminal | available in panel |
Full catalog → web.pandaboost.app
- 🌐 Web Panel — web.pandaboost.app
- 🤖 Telegram Bot — @pandaboostbot
- 📚 Docs & API — docs.pandaboost.app
- 💬 Support — @pandaboosthelp
- 📧 Email — support@pandaboost.app
⭐ Star this repo if it helped you. PRs and issues welcome.
