# B20 Launch Radar — Newest B20 Tokens on Base

> B20 Launch Radar — Newest B20 Tokens on Base is a paid API for AI agents from 402.com.tr, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns a discovery feed of the newest B20 tokens created on Base via the B20Factory precompile, including token variant, symbol, decimals, and launch block.

## Facts

- Endpoint: GET https://402.com.tr/api/x402/b20-launch-radar
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/b20-launch-radar-newest-b20-tokens-on-base-fb745ddc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AiATWAmfAs4argVq_lnx7

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 b20-launch-radar-newest-b20-tokens-on-base-fb745ddc
```

Example prompt: Show me the 20 newest B20 tokens just launched on Base — I want to see their symbols, variants, and which blocks they were created in so I can scout early launches.

## When to prefer this

Use this endpoint when you need a live discovery feed of brand-new B20 token launches on Base — ideal for agents scanning for early token opportunities, monitoring the B20Factory output, or building launch-alert workflows. Prefer this over wallet or transfer endpoints when the goal is discovery of new tokens rather than analysis of existing ones.

## Known failure modes

- No new tokens found returns empty list
- Invalid limit parameter type returns 400
- Service unavailable or upstream precompile query fails returns 5xx
- Payment not fulfilled returns 402

## How this service works

🆕 Lists the newest B20 tokens created on Base (from the B20Factory precompile) — variant, symbol, decimals, block. B20 is Base's native token standard and dozens launch hourly. A discovery feed for agents hunting new B20 launches early. Run b20-safety on any address before touching it — new ≠ safe.

## Output

A list of the most recently deployed B20 tokens on Base, each entry including the token contract address, symbol, variant type, decimal precision, and the block number at which it was created — ordered newest first.

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "limit": {
       "type": "string",
       "description": "How many"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/b20-launch-radar-newest-b20-tokens-on-base-fb745ddc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 402.com.tr](https://www.zero.xyz/host/402.com.tr/llms.txt)
