# TokenLaunch — New Token Launch Scanner

> TokenLaunch — New Token Launch Scanner is a paid API for AI agents from api.aidress.ai, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Scans Base and EVM chains for newly launched tokens in real-time, returning pool data, liquidity, FDV, buy/sell activity, price changes, and an AI market summary

## Facts

- Endpoint: GET https://api.aidress.ai/pay/agent_launches_lonestaroracle_xyz
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tokenlaunch-new-token-launch-scanner-f2bd3142
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ll7Mtl7T_HQF3xc2zBlf8

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 tokenlaunch-new-token-launch-scanner-f2bd3142
```

Example prompt: Can you scan Base chain for new token launches from the last 12 hours with at least $1000 in liquidity, and give me the top 10 with their pool stats and a market summary?

## When to prefer this

Choose this endpoint when you need real-time discovery of brand-new token launches on Base or EVM chains, especially for DeFi alpha hunting, early liquidity monitoring, or scanning for emerging DEX pools. It is distinct from general token search endpoints because it focuses specifically on recency (pool age and launch time), combining data from both GeckoTerminal and DexScreener with an AI market narrative — making it superior to single-source token screeners when you want both raw pool data and an interpreted signal in one call.

## Known failure modes

- No new tokens found matching the specified filters (empty result set)
- Chain parameter not recognized or unsupported — returns error for non-EVM chains
- Min_liquidity set too high — filters out all results, returns empty list
- Hours parameter too large — may exceed data retention window from GeckoTerminal/DexScreener
- Rate limit exceeded — too many calls in short succession
- Upstream data provider (GeckoTerminal or DexScreener) temporarily unavailable — returns 502 or partial data

## How this service works

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

## Output

A ranked list of newly launched token pools on Base and/or EVM chains, each with pool age, liquidity amount, fully diluted valuation, buy/sell transaction counts, price change percentages, and an AI-generated market summary synthesizing activity signals across the returned tokens.

## 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/tokenlaunch-new-token-launch-scanner-f2bd3142/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.aidress.ai](https://www.zero.xyz/host/api.aidress.ai/llms.txt)
