/v1/meta
Service metadata
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/honeypot-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/honeypot-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/honeypot-api/v1/meta");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/honeypot-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"note": "scan/pairs/holders/contract all take address (the token contract, 0x + 40 hex) and chain (Ethereum/Optimism/BNB Chain/Polygon/Base/Arbitrum/Avalanche or a numeric EVM chainID; default Ethereum). pairs and holders also take limit (1-50). meta takes no parameters. Honeypot detection is a live on-chain simulation; results are a safety signal, not financial advice — always verify before trading.",
"sample": {
"symbol": "PEPE",
"is_honeypot": false,
"sell_tax_pct": 0
},
"source": "honeypot.is public API (api.honeypot.is), keyless, live",
"service": "honeypot-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/scan": "Honeypot verdict + buy/sell tax + risk for a token (address=0x..., chain=eth).",
"GET /v1/pairs": "DEX trading pairs with liquidity for a token.",
"GET /v1/holders": "Largest holders + top-10 supply concentration.",
"GET /v1/contract": "Source-verification and proxy-call analysis."
},
"description": "Live EVM token-safety checks from honeypot.is, keyless. A honeypot is a token you can buy but cannot sell; honeypot.is detects it by actually simulating a buy and a sell against the token's real liquidity pool on-chain. The scan endpoint returns the honeypot verdict, the live buy/sell/transfer tax, gas and a risk summary; pairs lists the token's DEX trading pairs with reserves and USD liquidity; holders returns the largest holders and the top-10 supply concentration; contract reports whether the source is verified/open and whether it makes proxy calls. The EVM token-safety cut (Ethereum, BNB Chain, Base and other EVM chains) — distinct from the Solana rug-risk feed (rugcheck), which inspects SPL mint authorities on a different chain. A safety signal, not financial advice.",
"upstream_status": "ok",
"supported_chains": {
"1": "Ethereum",
"10": "Optimism",
"56": "BNB Chain",
"137": "Polygon",
"8453": "Base",
"42161": "Arbitrum",
"43114": "Avalanche"
}
},
"meta": {
"timestamp": "2026-06-13T04:41:56.684Z",
"request_id": "b20edf16-cb44-4baa-a779-4e1162f27dc2"
},
"status": "ok",
"message": "Meta",
"success": true
}