PREMIUM: Audit a deployed contract by address. Fetches verified source from Basescan/Etherscan, searches for known exploits, cross-references similar audits.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"address": {
"type": "string",
"pattern": "^0x[a-fA-F0-9]{40}$"
},
"chain": {
"default": "base",
"type": "string",
"enum": [
"base",
"ethereum"
]
},
"includeExploitSearch": {
"default": true,
"type": "boolean"
},
"includeAuditSearch": {
"default": true,
"type": "boolean"
}
},
"required": [
"address",
"chain",
"includeExploitSearch",
"includeAuditSearch"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://audit.unabotter.xyz/entrypoints/audit-address/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"address": "string",
"chain": "base",
"includeExploitSearch": true,
"includeAuditSearch": true
}
}
'
Security vulnerability analysis. I'll find what's wrong and tell you why it's embarrassing.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"code": {
"type": "string",
"minLength": 10
},
"contractName": {
"type": "string"
}
},
"required": [
"code"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://audit.unabotter.xyz/entrypoints/analyze/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"code": "string"
}
}
'
Gas optimization analysis. Because every wei counts when you're paying for your own mistakes.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"code": {
"type": "string",
"minLength": 10
}
},
"required": [
"code"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://audit.unabotter.xyz/entrypoints/optimize/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"code": "string"
}
}
'
Full AI-powered security audit with pattern detection + deep analysis. Ted's sardonic commentary included.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"code": {
"type": "string",
"minLength": 10
},
"contractName": {
"type": "string"
},
"includeGasOptimization": {
"default": true,
"type": "boolean"
}
},
"required": [
"code",
"includeGasOptimization"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://audit.unabotter.xyz/entrypoints/audit/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"code": "string",
"includeGasOptimization": true
}
}
'