# Token Early Buyers Lookup

> Token Early Buyers Lookup is a paid API for AI agents from api.x402node.dev, paid per call via x402, $0.018/call, status unknown (last checked 2026-09-14).

Returns the earliest buyers of a token in chronological chain order, with wallet labels, to identify snipers, insiders, and smart money entry patterns

## Facts

- Endpoint: GET https://api.x402node.dev/chain/early-buyers
- Price: $0.018/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/token-early-buyers-lookup-6a017af3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_F0jxmHKcdF0dvOQ2ceCEB

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 token-early-buyers-lookup-6a017af3
```

Example prompt: Show me the earliest buyers of token contract 0xABC123... on Base — I want to see who sniped it at launch, their wallet labels, and what order they got in.

## When to prefer this

Use this endpoint when you need to identify who bought a token earliest — by on-chain transaction order — and want wallet labels to classify them as snipers, insiders, or smart money. Prefer this over generic transfer-tracing endpoints when the specific goal is ranking first buyers and studying early entry patterns for a token launch.

## Known failure modes

- Invalid or non-existent token address returns an error or empty result
- Token with no buy history on the specified chain returns empty list
- Missing API key or invalid x402 payment returns 402 or 401 unauthorized
- Unsupported chain identifier returns an error
- Very new token with no indexed transactions may return incomplete data

## How this service works

The earliest buyers of a token in chain order with wallet labels - reveals who got in first, the early smart money, insiders or snipers, so agents can study entry patterns and follow early movers, from data behind an API key. early buyers, first buyers, who bought first, token snipers, early movers, smart money entry, insider buyers

## Output

An ordered list of the first wallets to buy the token, sorted by chain order (block/tx position), each with the wallet address, any known label (e.g. sniper bot, known insider, MEV bot), the buy timestamp, block number, and transaction hash so you can reconstruct the early entry pattern.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "token"
     ],
     "properties": {
      "chain": {
       "type": "string",
       "description": "base (default), eth, arbitrum, optimism, polygon"
      },
      "token": {
       "type": "string",
       "description": "Token contract (required)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/token-early-buyers-lookup-6a017af3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.x402node.dev](https://www.zero.xyz/host/api.x402node.dev/llms.txt)
