# Einstein AI Token Sniping Detector

> Einstein AI Token Sniping Detector is a paid API for AI agents from api.relai.fi, paid per call via x402, $1.000000/call, status unknown (last checked 2026-09-14).

Detects early token purchase patterns and bot/sniper activity for a given token contract address on supported EVM chains

## Facts

- Endpoint: POST https://api.relai.fi/relay/1769629274857/x402/bitquery/tokensniping
- Price: $1.000000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/einstein-ai-token-sniping-detector-42673f11
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KKa9-a4W5U88wCQXjbT0H

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability einstein-ai-token-sniping-detector-42673f11 -d '<json body>'
```

Example prompt: Check the Einstein AI sniping detector for token 0x4ed4E862860beD51a9570b96d89aF5E1B0Efefed on base — show me the top 20 early buyers and flag any bot or sniper activity.

## When to prefer this

Use this endpoint when you need to investigate whether a token launch was sniped by bots, identify early accumulation patterns, or perform due diligence on a token's initial trading activity across Ethereum, Base, BSC, Arbitrum, or Polygon. Prefer this over generic block explorers when you need structured, pre-analyzed sniper/bot detection signals rather than raw transaction data.

## Known failure modes

- Missing tokenAddress parameter returns validation error
- Unsupported chain value returns enum error
- Invalid or non-existent token address returns empty results or error
- Payment not fulfilled via x402 protocol returns 402 Payment Required
- Rate limiting or relay timeout returns 5xx error
- Token with no trading history returns empty dataset

## How this service works

Detect early token purchase patterns and bot activity. Supported chains: ethereum, base, bsc, arbitrum, polygon. Default chain: base. Required params: tokenAddress.

## Output

Returns a list of early token purchase events and patterns for the specified token contract, including wallet addresses, timing data, and signals indicating automated/bot sniper behavior, limited to the specified number of results.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain": {
   "enum": [
    "base",
    "ethereum",
    "bsc",
    "arbitrum",
    "polygon",
    "optimism",
    "solana"
   ],
   "type": "string",
   "description": "Blockchain to query (e.g., base, ethereum, bsc, solana)"
  },
  "limit": {
   "type": "string",
   "description": "Maximum number of results to return (default: 10, max: 500)"
  },
  "tokenAddress": {
   "type": "string",
   "description": "Token contract address (for token-specific queries)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/einstein-ai-token-sniping-detector-42673f11/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.relai.fi](https://www.zero.xyz/host/api.relai.fi/llms.txt)
