Skip to main content
Monitor unlaunched EVM tokens and receive real-time signals when they become buyable. AutoSnipe watches the mempool and new blocks for liquidity events, simulates buyability, and pushes a signal to your Socket.IO connection the moment a token launches.
Socket.IO only: AutoSnipe signals are delivered as server-emitted events on your Socket.IO connection. You must be connected via Socket.IO to receive them.

Register Watch

Register a watch on a token to be notified when it becomes buyable. Endpoint: /evm/autosnipe/register Example:
Response:
Registration will be rejected if:
  • The address is not a contract
  • The token is already launched and buyable
  • The token or its owner is on the ignored addresses list (stablecoins, WETH, known MEV bots, etc.)

Remove Watch

Remove an active AutoSnipe watch. Endpoint: /evm/autosnipe/remove Example:
Response:

List Watches

List all active AutoSnipe watches on a chain. Endpoint: /evm/autosnipe/list Example:
Response:

AutoSnipe Signal Event

When a watched token becomes buyable, you receive an autoSnipeSignal event on your Socket.IO connection. Watches are automatically removed after a signal fires.
Event payload:

Signal Types

  • block0 - The token was detected as buyable from a pending mempool transaction before it was mined. This gives you the earliest possible signal. The triggeringTx field contains the serialized liquidity-adding transaction.
  • block1 - The token was detected as buyable in the first block after the liquidity transaction was mined. This is a fallback for cases where mempool detection was not possible.