WalletTriage — real-time wallet risk check
WalletTriage — real-time wallet risk check: dangerous ERC20 approvals cross-referenced with a live exploit threat feed. Returns risk_score (0-100), risk_level and actionable findings.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
1560 msmedian answer time
$0.01listed price per call
$0.01price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
GET https://api.wallettriage.com/scan
| Category | Market data |
|---|---|
| Provider host | api.wallettriage.com |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 10 from 7 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.01 | 1560 ms |
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"address": "0x1111111111111111111111111111111111111111",
"chain": "eth"
},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"address": {
"description": "EVM wallet address to assess (0x-prefixed, 40 hex chars).",
"type": "string"
},
"chain": {
"description": "Chain to scan (Moralis name). Defaults to eth if omitted. One of: eth, base, polygon, arbitrum, optimism, bsc, avalanche.",
"enum": [
"eth",
"base",
"polygon",
"arbitrum",
"optimism",
"bsc",
"avalanche"
],
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"address": {
"type": "string"
},
"caveats": {
"description": "Present when coverage was limited (e.g. live feed tracking 0 active exploit entities). Absent = no caveats.",
"items": {
"type": "string"
},
"type": "array"
},
"chain": {
"type": "string"
},
"checked_at": {
"type": "string"
},
"findings": {
"description": "Actionable findings (medium+); worst-first.",
"items": {
"type": "object"
},
"type": "array"
},
"risk_level": {
"enum": [
"low",
"medium",
"high",
"critical"
],
"type": "string"
},
"risk_score": {
"description": "0-100; higher is riskier.",
"type": "number"
},
"stateless": {
"type": "boolean"
},
"summary": {
"type": "object"
},
"threat_feed": {
"description": "Provenance of the live exploit feed this verdict was evaluated against: state (ok|stale|missing|error), updated_at, entities. A degraded feed is refused with 503 BEFORE payment; paid responses always disclose feed state.",
"type": "object"
}
},
"required": [
"address",
"chain",
"risk_score",
"risk_level",
"findings",
"stateless"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}