Composite 0-100 reputation score for any Base wallet
Composite 0-100 reputation score for any Base wallet. POST {wallet, days?=90}. Combines ERC-8004 registration (Agent0 subgraph), USDC settlement velocity (Base RPC scan), and ERC-8004 feedback+validation registry events aggregated across all of the owner's agents. Hard-gates on 8004 registration to filter burn addresses + CEX wallets. Cached 24h. Use for: should I integrate/pay/trust this peer agent.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
974 msmedian answer time
$0.02listed price per call
$0.02price 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
POST https://graphadvocate.com/agent/score
| Category | Company and compliance |
|---|---|
| Provider host | graphadvocate.com |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 5 from 4 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.02 | 974 ms |
Example input (from the provider)
{
"body": {
"days": 90,
"wallet": "0x575267eED09c338FAE5716A486A7B58A5749A292"
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"days": {
"default": 90,
"description": "USDC settlement scan window.",
"maximum": 365,
"minimum": 1,
"type": "integer"
},
"wallet": {
"description": "Wallet address to score (owner or agentWallet).",
"pattern": "^0x[a-fA-F0-9]{40}$",
"type": "string"
}
},
"required": [
"wallet"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"cache_hit": {
"type": "boolean"
},
"score": {
"maximum": 100,
"minimum": 0,
"type": "integer"
},
"tier": {
"enum": [
"active_verified",
"active",
"registered_or_settling",
"dormant_low_signal",
"no_evidence"
],
"type": "string"
},
"verdict": {
"type": "string"
},
"wallet": {
"type": "string"
}
},
"required": [
"wallet",
"score",
"tier",
"verdict"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}