/v1/meta
Service metadata & live sample
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/contractverify-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/contractverify-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/contractverify-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/contractverify-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"note": "All endpoints take a required chain (numeric chain id, e.g. 1 = Ethereum, 137 = Polygon, 8453 = Base) and address (0x + 40 hex). Example: 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 = USDC on Ethereum. abi and source return 404 if the contract is not verified.",
"sample": {
"name": "FiatTokenProxy",
"address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"verified": true
},
"source": "Sourcify open verification API (sourcify.dev/server/v2), live",
"service": "contractverify-api",
"endpoints": {
"GET /v1/abi": "The contract's ABI plus function and event name lists (chain, address).",
"GET /v1/meta": "This document.",
"GET /v1/source": "The verified Solidity source files (chain, address).",
"GET /v1/contract": "Verification status, compiler, name and deployment for a contract (chain, address)."
},
"description": "Check whether any EVM smart contract's source code is verified and pull its ABI, source files and deployment details, keyless. Give it a chain id and contract address and get the verification status (full/partial/not verified), the compiler and contract name, the deployment info (deployer, transaction, block), the contract's ABI and the verified Solidity source. Live, nothing stored beyond a short cache. The contract-verification / ABI layer for security, due-diligence, explorer, wallet and dapp tooling. Backed by the open Sourcify registry.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-14T08:04:17.872Z",
"request_id": "66d41911-902d-4f24-ad6f-9f549491b709"
},
"status": "ok",
"message": "Meta",
"success": true
}