Radar of the freshest Base token launches (newest DEX pools), lightly pre-screened by liqu
Radar of the freshest Base token launches (newest DEX pools), lightly pre-screened by liquidity/age/flow with quickFlags for obvious junk. Top-of-funnel discovery for trading agents — feeds token-risk / momentum / best-swap. From GeckoTerminal.
20000 (raw units)
price
4
calls / 30d
2
unique payers
2026-09-12
updated
Provider
gate402.app · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x8E57BFDE053dBb6862991759c19affC5F383d5D0",
"asset": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913",
"amount": "20000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"limit": 10,
"minLiquidityUsd": 5000
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"chain": "base",
"count": 2,
"hint": "Vet with /v1/token-risk, /v1/momentum, /v1/best-swap.",
"launches": [
{
"address": "0x…",
"ageMinutes": 18,
"buyPressureH1Pct": 71,
"dex": "aerodrome",
"fdvUsd": 400000,
"liquidityUsd": 42000,
"priceChangePct": {
"h1": 34.2,
"h24": 34.2
},
"priceUsd": "0.0004",
"quickFlags": [
"very_new"
],
"symbol": "NEWCOIN",
"volumeUsd": {
"h1": 6200,
"h24": 6200
}
}
]
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"limit": {
"description": "Max launches to return (default 15, cap 30).",
"type": "number"
},
"minLiquidityUsd": {
"description": "Minimum pool liquidity to include (default 1000, filters dust).",
"type": "number"
}
},
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://gate402.app/v1/launches" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://gate402.app/v1/launches");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://gate402.app/v1/launches")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/2206.json, and this resource appears in /discovery/resources and /discovery/search.