# Lone Star Oracle New Token Launch Scanner

> Lone Star Oracle New Token Launch Scanner is a paid API for AI agents from launches.lonestaroracle.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Scans Base and EVM chains in real-time to detect and surface newly launched token pools

## Facts

- Endpoint: GET https://launches.lonestaroracle.xyz/scan
- Price: $0.05/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-new-token-launch-scanner-9f34615b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_grMelOJOLpSnDTUvUAr-b

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-new-token-launch-scanner-9f34615b
```

Example prompt: Show me the latest token launches on Base right now — I want to see real-time new pool data for anything that just went live on EVM chains.

## When to prefer this

Use this endpoint when you need real-time discovery of newly launched tokens and liquidity pools specifically on Base or EVM-compatible chains. Prefer this over general blockchain explorers when you want a focused, low-latency feed of fresh token launches rather than historical transaction data.

## Known failure modes

- No new launches found in the current scan window — returns empty result set
- Chain congestion or RPC issues may cause stale or delayed pool data
- Invalid or unsupported chain identifier returns an error
- Rate limiting or payment failure (402) if USDC payment not processed correctly

## How this service works

New token launch scanner — Base and EVM chains, real-time pool data

## Output

Returns real-time data on newly launched tokens and liquidity pools across Base and other EVM chains, including token addresses, pool details, and launch timing information.

## Example request

```json
{
 "chain": "base",
 "hours": 24,
 "limit": 10,
 "min_liquidity": 1000
}
```

## Request schema (JSON Schema)

```json
{
 "name": "TokenLaunch — New Token Launch Scanner",
 "tags": [
  "token-launch",
  "new-tokens",
  "base",
  "dex",
  "alpha",
  "defi"
 ],
 "type": "object",
 "version": "1.0.0",
 "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": {
      "chain": {
       "type": "string",
       "title": "Chain",
       "default": "base"
      },
      "hours": {
       "type": "integer",
       "title": "Hours",
       "default": 24
      },
      "limit": {
       "type": "integer",
       "title": "Limit",
       "default": 20
      },
      "min_liquidity": {
       "type": "number",
       "title": "Min Liquidity",
       "default": 500
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {}
   }
  }
 },
 "description": "Real-time new token launches on Base and EVM chains. Pulls from GeckoTerminal and DexScreener — pool age, liquidity, FDV, buy/sell activity, price changes, and AI market summary."
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/lone-star-oracle-new-token-launch-scanner-9f34615b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from launches.lonestaroracle.xyz](https://www.zero.xyz/host/launches.lonestaroracle.xyz/llms.txt)
