GoPlus/Honeypot
GoPlus/Honeypot.is-backed token security check - honeypot flag, buy/sell tax, mintability, and ownership renouncement for a given contract address, so a bot can decide before it buys.
20000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-03
updated
Provider
alphapipeline-eu.onrender.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x2bcfA4F7E1fA5E96934846A7dEa623398Ed7f752",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "20000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"chain_id": 8453,
"contract_address": "0x4200000000000000000000000000000000000006"
},
"type": "http"
},
"output": {
"example": {
"buy_tax_pct": 0,
"chain_id": 8453,
"contract_address": "0x4200000000000000000000000000000000000006",
"data_source": "goplus",
"generated_at": {
"kst": "2026-09-04 21:00:00 KST",
"utc": "2026-09-04T12:00:00Z"
},
"holder_count": 125000,
"is_honeypot": false,
"is_in_dex": true,
"is_mintable": false,
"is_open_source": true,
"notice": null,
"owner_address": null,
"owner_renounced": true,
"risk_flags": [],
"risk_level": "LOW",
"sell_tax_pct": 0,
"token_name": "Wrapped Ether",
"token_symbol": "WETH"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {
"chain_id": {
"description": "EVM chain id, e.g. 8453 for Base.",
"type": "integer"
},
"contract_address": {
"description": "Token contract address (0x...).",
"type": "string"
}
},
"required": [
"chain_id",
"contract_address"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"buy_tax_pct": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
],
"default": null,
"title": "Buy Tax Pct"
},
"chain_id": {
"title": "Chain Id",
"type": "integer"
},
"contract_address": {
"title": "Contract Address",
"type": "string"
},
"data_source": {
"title": "Data Source",
"type": "string"
},
"generated_at": {
"properties": {
"kst": {
"title": "Kst",
"type": "string"
},
"utc": {
"title": "Utc",
"type": "string"
}
},
"required": [
"utc",
"kst"
],
"title": "TimestampPair",
"type": "object"
},
"holder_count": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Holder Count"
},
"is_honeypot": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Is Honeypot"
},
"is_in_dex": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Is In Dex"
},
"is_mintable": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Is Mintable"
},
"is_open_source": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Is Open Source"
},
"notice": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Notice"
},
"owner_address": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Owner Address"
},
"owner_renounced": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Owner Renounced"
},
"risk_flags": {
"default": [],
"items": {
"type": "string"
},
"title": "Risk Flags",
"type": "array"
},
"risk_level": {
"title": "Risk Level",
"type": "string"
},
"sell_tax_pct": {
"anyOf": [
{
"type": "number"
},
{
"type": "null"
}
],
"default": null,
"title": "Sell Tax Pct"
},
"token_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Token Name"
},
"token_symbol": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Token Symbol"
}
},
"required": [
"generated_at",
"chain_id",
"contract_address",
"risk_level",
"data_source"
],
"title": "TokenRiskResponse",
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://alphapipeline-eu.onrender.com/v1/security/token-risk" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://alphapipeline-eu.onrender.com/v1/security/token-risk");
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://alphapipeline-eu.onrender.com/v1/security/token-risk")
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/8007.json, and this resource appears in /discovery/resources and /discovery/search.