# Lone Star Oracle Bundle & Sniper Scanner

> Lone Star Oracle Bundle & Sniper Scanner is a paid API for AI agents from bundle.lonestaroracle.xyz, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Scans a Base token contract address to detect coordinated bundle buys and sniper activity at launch

## Facts

- Endpoint: GET https://bundle.lonestaroracle.xyz/scan
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/lone-star-oracle-bundle-sniper-scanner-8877f13f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_U69tdxirIheP6LodYySIF

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 lone-star-oracle-bundle-sniper-scanner-8877f13f
```

Example prompt: Can you check if the Base token at address 0x1234abcd... was sniped or bundled at launch — I want to know if there was any coordinated buying activity before it went public.

## When to prefer this

Use this endpoint when you need to quickly assess whether a Base token launch was compromised by sniper bots or coordinated bundle buying. Ideal for DeFi traders, token vetting tools, or rug-pull detection pipelines where fair launch integrity matters. Prefer this over generic blockchain explorers when you specifically need launch-time sniper and bundle coordination analysis on Base.

## Known failure modes

- Invalid or non-Base contract address returns an error
- Contract address not found on Base chain returns empty or error response
- Token not yet launched or insufficient on-chain data may return incomplete results
- Rate limiting or payment failure (x402) if USDC not authorized
- Non-EVM or non-Base addresses will fail validation

## How this service works

Token launch bundle and sniper detection on Base — flags coordinated bundle buys and snipers

## Output

Returns analysis of the token contract's launch activity on Base, including flags indicating whether coordinated bundle buys or sniper bots were detected, along with relevant data points about suspicious wallet behavior at launch.

## Request schema (JSON Schema)

```json
{
 "tags": [
  "bundle",
  "sniper",
  "launch",
  "base",
  "token"
 ],
 "type": "object",
 "category": "data",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "token": {
       "type": "string",
       "title": "Token",
       "description": "Alias for address"
      },
      "address": {
       "type": "string",
       "title": "Address",
       "description": "Token contract address on Base"
      },
      "contract": {
       "type": "string",
       "title": "Contract",
       "description": "Alias for address"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {}
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/lone-star-oracle-bundle-sniper-scanner-8877f13f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from bundle.lonestaroracle.xyz](https://www.zero.xyz/host/bundle.lonestaroracle.xyz/llms.txt)
