Scored intelligence on freshly-launched Base tokens: safety + momentum → composite score a
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.
30000 (raw units)
price
3
calls / 30d
3
unique payers
2026-09-17
updated
Provider
rugsense.xyz · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xEFABaaE57e9AacAb865dcCce024053fcb9B0072E",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "30000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {},
"type": "http"
},
"output": {
"example": {
"chain": "base",
"count": 1,
"launches": [
{
"address": "0x…",
"composite": 63,
"flags": [
{
"code": "SELLABLE",
"severity": "info"
}
],
"momentumScore": 55,
"safetyConfidence": 75,
"safetyScore": 70,
"symbol": "TKN",
"tier": "WATCH"
}
]
},
"type": "json"
}
},
"routeTemplate": "/api/launches/latest",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"limit": {
"description": "Max launches (1-50, default 20)",
"type": "string"
},
"minSafety": {
"description": "Only launches with safetyScore >= this (0-100)",
"type": "string"
},
"tier": {
"description": "Filter by tier: HOT | WATCH | AVOID",
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://rugsense.xyz/api/launches/latest" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://rugsense.xyz/api/launches/latest");
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://rugsense.xyz/api/launches/latest")
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/5171.json, and this resource appears in /discovery/resources and /discovery/search.