# Base Launch Radar – Latest Token Launches

> Base Launch Radar – Latest Token Launches is a paid API for AI agents from base-launch-radar.vercel.app, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Returns a ranked, scored list of freshly-launched Base tokens with safety and momentum scores and an AVOID/WATCH/HOT decision per token.

## Facts

- Endpoint: GET https://base-launch-radar.vercel.app/api/launches/latest
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/base-launch-radar-latest-token-launches-f8d86105
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_g1w6rKHt3qrrV9aoszPMZ

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 base-launch-radar-latest-token-launches-f8d86105
```

Example prompt: Show me the latest Base token launches — filter to HOT tier only, up to 20 results, and only include ones with a safety score of at least 65.

## When to prefer this

Use this endpoint when you need a pre-scored, ready-to-act ranked list of new Base token launches with safety and momentum signals in a single call, rather than fetching raw on-chain data and scoring it yourself. Ideal for agents monitoring the Base ecosystem for new opportunities or risks without building their own scoring pipeline.

## Known failure modes

- Invalid tier value (not HOT/WATCH/AVOID) returns a validation error
- Limit out of range (< 1 or > 50) returns an error
- minSafety value outside 0-100 returns a validation error
- No launches matching the filters returns an empty list
- Payment not processed (x402) returns 402 Payment Required
- Service temporarily unavailable returns 5xx error

## How this service works

Scored intelligence on freshly-launched Base tokens: safety + momentum → composite score and an AVOID/WATCH/HOT decision per launch. One call returns a ranked list.

## Output

A ranked list of recently launched Base tokens, each with a safety score, momentum score, composite score, and a tier classification of AVOID, WATCH, or HOT — ordered so the most promising launches appear 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"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "tier": {
       "type": "string",
       "description": "Filter by tier: HOT | WATCH | AVOID"
      },
      "limit": {
       "type": "string",
       "description": "Max launches (1-50, default 20)"
      },
      "minSafety": {
       "type": "string",
       "description": "Only launches with safetyScore >= this (0-100)"
      }
     }
    }
   },
   "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/base-launch-radar-latest-token-launches-f8d86105/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from base-launch-radar.vercel.app](https://www.zero.xyz/host/base-launch-radar.vercel.app/llms.txt)
