Arc mainnet token due-diligence: admin-control probe (mint/pause/blacklist/upgrade), honey
Arc mainnet token due-diligence: admin-control probe (mint/pause/blacklist/upgrade), honeypot transfer test, symbol-squatting/lookalike detection, launchpad tax and fee-allocation decode, live price/liquidity, owner wallet stats, holder count, creation time, risk score and verdict.
200000 (raw units)
price
2
calls / 30d
1
unique payers
2026-09-17
updated
Provider
api.sys84.org · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x64e4e6c18849ba687A468dcad0A582AC6f8089E4",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "200000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"category": "agent-risk",
"description": "Arc mainnet token due-diligence: admin-control probe (mint/pause/blacklist/upgrade), honeypot transfer test, symbol-squatting/lookalike detection, launchpad tax and fee-allocation decode, live price/liquidity, owner wallet stats, holder count, creation time, risk score and verdict.",
"info": {
"category": "agent-risk",
"description": "Arc mainnet token due-diligence: admin-control probe (mint/pause/blacklist/upgrade), honeypot transfer test, symbol-squatting/lookalike detection, launchpad tax and fee-allocation decode, live price/liquidity, owner wallet stats, holder count, creation time, risk score and verdict.",
"input": {
"body": {
"token": "base"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"method": "POST",
"name": "SYS84 Arc Token Diligence",
"output": {
"example": {
"holders": 1,
"honeypot_probe": {},
"launchpad_family_v4_hook": true,
"market": {},
"not_financial_advice": true,
"portal_config": {},
"reasons": [],
"risk_score": 1,
"symbol_squatting": {},
"token_facts": {},
"ts": 1,
"verdict": "string"
},
"type": "json"
},
"provider": "SYS84",
"routeTemplate": "https://api.sys84.org/v1/services/arc_token_diligence",
"serviceName": "SYS84 Arc Token Diligence",
"tags": [
"sys84",
"x402",
"agent",
"risk",
"wallet",
"security",
"defi",
"arc"
]
},
"method": "POST",
"name": "SYS84 Arc Token Diligence",
"provider": "SYS84",
"routeTemplate": "https://api.sys84.org/v1/services/arc_token_diligence",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"body": {
"properties": {
"token": {
"description": "string EVM token contract address on Arc mainnet (chain 5042)",
"type": "string"
}
},
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"GET",
"POST",
"PUT",
"PATCH",
"DELETE",
"HEAD"
],
"type": "string"
},
"queryParams": {
"properties": {
"token": {
"description": "string EVM token contract address on Arc mainnet (chain 5042)",
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"holders": {
"description": "number approximate current holder count",
"type": "number"
},
"honeypot_probe": {
"description": "object tested, transfer_succeeded, holder_used",
"type": "object"
},
"launchpad_family_v4_hook": {
"description": "boolean whether the token is on the known Arc launchpad V4-hook family",
"type": "boolean"
},
"market": {
"description": "object price_usd, liquidity_usd, volume_24h_usd, txns_24h, price_change_24h_pct, when indexed on DexScreener",
"type": "object"
},
"not_financial_advice": {
"description": "boolean always true",
"type": "boolean"
},
"portal_config": {
"description": "object tax bps and fee-allocation config, when on the known launchpad family",
"type": "object"
},
"reasons": {
"description": "array of machine-readable risk reasons",
"type": "array"
},
"risk_score": {
"description": "number 0-100, higher is riskier",
"type": "number"
},
"symbol_squatting": {
"description": "object same_symbol_tokens_on_arc count, is_earliest, rank_by_creation, others",
"type": "object"
},
"token_facts": {
"description": "object name, symbol, decimals, totalSupply, owner",
"type": "object"
},
"ts": {
"description": "number Unix observation timestamp",
"type": "number"
},
"verdict": {
"description": "string no_major_flags_found/elevated_caution/review/high_risk",
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
},
"serviceName": "SYS84 Arc Token Diligence",
"tags": [
"sys84",
"x402",
"agent",
"risk",
"wallet",
"security",
"defi",
"arc"
]
}
}Use it
curl
curl "https://api.sys84.org/v1/services/arc_token_diligence" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.sys84.org/v1/services/arc_token_diligence");
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://api.sys84.org/v1/services/arc_token_diligence")
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/8658.json, and this resource appears in /discovery/resources and /discovery/search.