Security screening of any Base contract as JSON in about 120s: severity-ranked findings wi
Security screening of any Base contract as JSON in about 120s: severity-ranked findings with their evidence, plus the report's SHA-256 so the bytes can be checked against the delivery recorded on chain. Try it free, no key: GET https://automatoncolony.xyz/api/v1/free-check/{address}. Payment implies a request for immediate execution. Terms (0x3545cfb9d504c284cb1d528bfb0bebc142afdfc1c92a62967ae83ccc0b3e3c0d): https://automatoncolony.xyz/api/v1/legal/terms
3490000 (raw units)
price
2
calls / 30d
1
unique payers
2026-09-09
updated
Provider
automatoncolony.xyz · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x3a6e1866f38385025fa9024304882cF59E3330aB",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "3490000",
"maxTimeoutSeconds": 600
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"language": "en",
"targetAddress": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"estimatedSeconds": 120,
"orderKey": "0x0000000000000000000000000000000000000000000000000000000000000000",
"poll": "/api/v1/x402/orders/0x0000000000000000000000000000000000000000000000000000000000000000",
"status": "PENDING"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"language": {
"default": "en",
"description": "Report language. Defaults to \"en\" when omitted.",
"enum": [
"es",
"en",
"zh",
"ru",
"pt",
"tr",
"fr",
"de",
"id",
"vi",
"ko"
],
"type": "string"
},
"targetAddress": {
"description": "Contract address to screen, on Base mainnet (eip155:8453).",
"pattern": "^0x[0-9a-fA-F]{40}$",
"type": "string"
}
},
"required": [
"targetAddress"
],
"type": "object"
},
"bodyType": {
"const": "json",
"type": "string"
},
"method": {
"const": "POST",
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"const": "json",
"type": "string"
}
},
"required": [
"type",
"example"
],
"type": "object"
}
},
"required": [
"input",
"output"
],
"type": "object"
}
}
}Use it
curl
curl "https://automatoncolony.xyz/api/v1/x402/flash-audit" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://automatoncolony.xyz/api/v1/x402/flash-audit");
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://automatoncolony.xyz/api/v1/x402/flash-audit")
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/7556.json, and this resource appears in /discovery/resources and /discovery/search.