Skip to main content
CallStatic documentation hero background

CallStaticDocumentation

Explore API docs, tutorials and more.
Supported Chains APIsView all >
bscbasesolanablastfantomethereumarb
+20 more...
Quick Integrations
Real-time token launch notifications

Volume-based trading signals

Token metadata dashboard

Token deployment tracker with Discord

Supply concentration analyzer

Trade size analyzer

Whale trade detector
code-snippet-iconReal-time token launch notifications
1
2import { WebSocket } from 'ws';
3
4const ws = new WebSocket('wss://api.callstaticrpc.com/pumpfun/v1/streams');
5
6ws.send(JSON.stringify({
7  type: 'Subscribe',
8  payload: {
9    sub_type: 'Deployment'
10  }
11}));
12
13ws.on('message', async (data) => {
14  const { mint, name, symbol, total_supply } = JSON.parse(data);
15  console.log(`🚀 New token deployed: ${name} (${symbol}) ${mint} ${total_supply}  `);
16});
Get Started
get-started