SecurityPOSTlive
Token security scan
Scan a token contract across 60+ chains for honeypot, buy/sell/transfer tax, ownership renouncement, mint/blacklist/pause, proxy, and scam-pattern risk — a pre-trade safety check.
$0.03
per call
Success
—
p50 latency
—
p95 latency
—
Calls (30d)
0
Provider contract
- Call path
- /routes/quickintel/security/token-scan
- Method
- POST
- Selected provider
- quickinteldefault
- Provider price
- $0.03
- Settlement
- Base USDC · x402 · 5% h402 fee
Quickstart
Both commands call the selected provider directly.
cURL
curl -X POST '/routes/quickintel/security/token-scan' \
-H 'content-type: application/json' \
-d '{"chain":"base","tokenAddress":"0x833589fcd6edb6e08f4c7c32d4f71b54bda02913"}'CLI
h402 call 'security/token-scan' --provider 'quickintel' --method POST --json '{"chain":"base","tokenAddress":"0x833589fcd6edb6e08f4c7c32d4f71b54bda02913"}'Parameters & live test
pays real USDCFill the request fields, quote the exact per-call total, then choose x402 or eligible bonus credit explicitly before sending. Only the selected provider's listed parameters are accepted.
chainstringrequiredLowercase blockchain name the token lives on.
e.g.
tokenAddressstringrequiredToken contract address to scan.
POST/routes/quickintel/security/token-scan
Request body
{
"chain": "base",
"tokenAddress": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913"
}ResponseExample response
{ "data": { "tokenDetails": { "tokenName": "USD Coin", "tokenSymbol": "USDC", "tokenDecimals": 6, "tokenLogo": "https://assets.coingecko.com/coins/images/6319/large/usdc.png?1696506694", "tokenOwner": "0x3abd6f64a422225e61e435bae41db12096106df7", "tokenSupply": 28037276.73, "tokenCreatedDate": 1692633337000, "quickiTokenHash": { "exact_qHash": "q-d2b5b9ffc5ea", "similar_qHash": "q-ffc0e22c7e0e" } }, "tokenDynamicDetails": { "lastUpdatedTimestamp": 1784619333287, "is_Honeypot": false, "buy_Tax": "0.0", "sell_Tax": "0.0", "transfer_Tax": "0.0", "has_Trading_Cooldown": false, "post_Cooldown_Tax": null, "max_Transaction": null, "max_Transaction_Percent": null, "max_Wallet": null, "max_Wallet_Percent": null, "token_Supply_Burned": 25713.665024, "lp_Pair": "0x88A43bbDF9D098eEC7bCEda4e2494615dfD9bB9C", "lp_Supply": null, "lp_Burned_Percent": null, "lp_Locks": null, "price_Impact": "0.0", "liquidity": false, "problem": false, "extra": null }, "isScam": null, "isAirdropPhishingScam": false, "contractVerified": true, "quickiAudit": { "contract_Name": "FiatTokenProxy", "contract_Chain": "base", "contract_Address": "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913", "hidden_Owner": true, "hidden_Owner_Modifiers": [ " \"content\": \"/**\\n * SPDX-License-Identifier: MIT\\n *\\n * Copyright (c) 2018 zOS Global Limited.\\n *\\n * Permission is hereby granted, free of charge, to any person obtaining a copy\\n * of this software and associated documentation files (the \\\"Software\\\"), to deal\\n * in the Software without restriction, including without limitation the rights\\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\\n * copies of the Software, and to permit persons to whom the Software is\\n * furnished to do so, subject to the following conditions:\\n *\\n * The above copyright notice and this permission notice shall be included in\\n * copies or substantial portions of the Software.\\n *\\n * THE SOFTWARE IS PROVIDED \\\"AS IS\\\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\\n * SOFTWARE.\\n */\\n\\npragma solidity 0.6.12;\\n\\nimport { UpgradeabilityProxy } from \\\"./UpgradeabilityProxy.sol\\\";\\n\\n/**\\n * @notice This contract combines an upgradeability proxy with an authorization\\n * mechanism for administrative tasks.\\n * @dev Forked from https://github.com/zeppelinos/zos-lib/blob/8a16ef3ad17ec7430e3a9d2b5e3f39b8204f8c8d/contracts/upgradeability/AdminUpgradeabilityProxy.sol\\n * Modifications:\\n * 1. Reformat, conform to Solidity 0.6 syntax, and add error messages (5/13/20)\\n * 2. Remove ifAdmin modifier from admin() and implementation() (5/13/20)\\n */\\ncontract AdminUpgradeabilityProxy is UpgradeabilityProxy {\\n /**\\n * @dev Emitted when the administration has been transferred.\\n * @param previousAdmin Address of the previous admin.\\n * @param newAdmin Address of the … [truncated for committed sample]", "function. Otherwise, it will delegate the call\\n * to the implementation.\\n */\\n modifier ifAdmin() {\\n if (msg.sender == _admin()) {\\n _;\\n } else {\\n _fallback();\\n }\\n }\\n\\n /**\\n * @dev Contract constructor.\\n * It sets the `msg.sender` as the proxy administrator.\\n * @param implementationContract address of the initial implementation.\\n */\\n constructor(address implementationContract)\\n public\\n UpgradeabilityProxy(implementationContract)\\n {\\n assert(ADMIN_SLOT == keccak256(\\\"org.zeppelinos.proxy.admin\\\"));\\n\\n _setAdmin(msg.sender);\\n }\\n\\n /**\\n * @return The address of the proxy admin.\\n */\\n }" ], "is_Proxy": true, "proxy_Implementation": "0x6d0c9a70d85e42ba8b76dc06620d4e988ec8d0c1", "has_External_Contract_Risk": true, "external_Contracts": [ "0x6d0c9a70d85e42ba8b76dc06620d4e988ec8d0c1" ], "can_Mint": false, "cant_Mint_Renounced": null, "can_Burn": false, "can_Blacklist": false, "cant_Blacklist_Renounced": null, "can_MultiBlacklist": false, "can_Whitelist": false, "cant_Whitelist_Renounced": null, "can_Update_Fees": false, "cant_Update_Fees_Renounced": null, "can_Update_Max_Wallet": false, "cant_Update_Max_Wallet_Renounced": null, "can_Update_Max_Tx": false, "cant_Update_Max_Tx_Renounced": null, "can_Pause_Trading": false, "cant_Pause_Trading_Renounced": false }, "projectVerified": false, "projectVerifiDescription": null, "kycVerifications": null, "externalAudits": null, "extraLinks": null }, "h402": { "routeId": "security/token-scan", "provider": "quickintel", "selectedCandidateId": "security/token-scan/quickintel", "routing": "manual", "paidBy": "x402-exact" } }
Providers
Choose a provider for this task. The catalog recommends the current default from quality, reliability, and price; your selected provider stays pinned. Listed prices are provider prices; settlement adds a 5% h402 fee.
quickintel
x402
—
- Success
- —
- p50
- —
- Calls
- —
—
$0.03
Last successful call: Never· Aggregated by h402 — not the source provider