# Obol EVM Token Launches with Safety Verdict

> Obol EVM Token Launches with Safety Verdict is a paid API for AI agents from obol-x402.fly.dev, paid per call via x402, $0.05/call, status down (last checked 2026-09-15).

Returns fresh token launches from DexScreener enriched with liquidity/FDV/24h data and a GoPlus-fused safety verdict, across multiple EVM chains, with Ed25519-signed responses.

## Facts

- Endpoint: GET https://obol-x402.fly.dev/v1/evm/launches
- Price: $0.05/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/obol-evm-token-launches-with-safety-verdict-c046aa85
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OugEqs304dU2H9IS_KLwj

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 obol-evm-token-launches-with-safety-verdict-c046aa85
```

Example prompt: Show me the latest token launches on Base with their safety verdicts and liquidity data — I want to know which new tokens are safe to trade and which look like rugs.

## When to prefer this

Choose this endpoint when an agent or trading bot needs a real-time feed of new token launches with integrated security screening, specifically across EVM chains including Robinhood Chain. It uniquely combines DexScreener launch attention signals, liquidity/FDV metrics, and GoPlus-fused safety verdicts in a single signed response — ideal for sniper bots, risk-aware trading agents, or monitoring workflows that need to act fast on new launches without separate security lookups.

## Known failure modes

- Invalid chain parameter returns error — must be one of: base, robinhood, ethereum, arbitrum, optimism, polygon, bnb
- Payment failure (x402) if USDC payment is not provided or insufficient
- No recent launches available for the specified chain returns empty list
- GoPlus API unavailability may degrade or omit safety verdicts
- Signature verification failure if response is tampered in transit

## How this service works

Fresh token launches with a SAFETY VERDICT overlaid — the habit feed for trading and sniper agents: dexscreener launch attention (boosts + new profiles) on base, robinhood chain, ethereum, arbitrum, optimism, polygon, or bnb (?chain=, default base), enriched with best-pair liquidity/fdv/24h and OBOL's GoPlus-fused token verdict per token. ROBINHOOD CHAIN launches covered — where ... Cryptographically signed (Ed25519) — every response is independently verifiable via /.well-known/obol-pubkey.

## Output

A list of freshly launched tokens on the specified EVM chain (default: Base), each enriched with DexScreener boost/attention signals, best-pair liquidity, FDV, 24h volume, and an OBOL safety verdict fusing GoPlus security data. The entire response is cryptographically signed with Ed25519 for independent verification.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "chain": {
       "enum": [
        "base",
        "robinhood",
        "ethereum",
        "arbitrum",
        "optimism",
        "polygon",
        "bnb"
       ],
       "type": "string",
       "default": "base"
      }
     }
    }
   },
   "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/obol-evm-token-launches-with-safety-verdict-c046aa85/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from obol-x402.fly.dev](https://www.zero.xyz/host/obol-x402.fly.dev/llms.txt)
