One-call launch screening for launchpads and trading apps
One-call launch screening for launchpads and trading apps: pass a token, get a GREEN / CAUTION / BLOCK decision (action: allow / review / reject) with plain-English reasons. Combines a live honeypot/tax simulation and owner-power analysis with the checks no other scanner has — whether the DEPLOYER or the exact CODE has rugged before (from a 35k-verdict ledger). Drop it into your listing flow to auto-reject rugs before they ever go live. Cache-first, so a repeat token is near-instant and free.
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
GET https://oracle.cyberwarex.com/verdict
| Category | Code and developer |
|---|---|
| Provider host | oracle.cyberwarex.com |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 4 from 2 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.02 | 1146 ms |
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"address": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"chain": "base"
},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"additionalProperties": false,
"properties": {
"address": {
"description": "ERC-20 token contract address to screen.",
"pattern": "^0x[a-fA-F0-9]{40}$",
"type": "string"
},
"chain": {
"default": "base",
"enum": [
"base",
"bsc",
"ethereum",
"polygon",
"arbitrum"
],
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"action": {
"enum": [
"allow",
"review",
"reject"
],
"type": "string"
},
"address": {
"type": "string"
},
"cached": {
"type": "boolean"
},
"chain": {
"type": "string"
},
"deployer_prior_scams": {
"type": "integer"
},
"grade": {
"type": "string"
},
"is_honeypot": {
"type": "boolean"
},
"reasons": {
"items": {
"type": "string"
},
"type": "array"
},
"template_prior_rugs": {
"type": "integer"
},
"verdict": {
"enum": [
"GREEN",
"CAUTION",
"BLOCK"
],
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}