How completely could this Base contract be checked, and on what grade of evidence
How completely could this Base contract be checked, and on what grade of evidence. Separates checked-and-clean from could-not-be-checked, which automated callers otherwise conflate. Explicitly not a safety score.
20000 (raw units)
price
5
calls / 30d
4
unique payers
2026-09-02
updated
Provider
api.m2msentinel.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x6d6c398390cfb88f1cd42715b84906a0bd6652aa",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "20000",
"maxTimeoutSeconds": 120
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"pathParams": {
"address": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
},
"queryParams": {},
"type": "http"
},
"output": {
"example": {
"address": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"analysisKind": "STATIC_BYTECODE_CAPABILITY_HEURISTIC",
"notASafetyGuarantee": true,
"reachability": "NOT_ESTABLISHED",
"status": "SUCCESS"
},
"type": "json"
}
},
"routeTemplate": "/v1/security/score/:address",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"pathParams": {
"properties": {
"address": {
"description": "A Base mainnet contract address.",
"pattern": "^0x[0-9a-fA-F]{40}$",
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
},
"queryParams": {
"properties": {},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"address": {
"type": "string"
},
"capabilityScore": {
"type": [
"number",
"null"
]
},
"status": {
"const": "SUCCESS",
"type": "string"
}
},
"required": [
"status"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.m2msentinel.com/v1/security/score/:address" # -> 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.m2msentinel.com/v1/security/score/:address");
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.m2msentinel.com/v1/security/score/:address")
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/7916.json, and this resource appears in /discovery/resources and /discovery/search.