x402 Trust
Agentic credit score (agent FICO) API
Look up a wallet's agentic credit score (300-850, FICO-style) with tier and an auditable factor breakdown: bonded stake (skin-in-the-game), bond count (consistency), tenure, and recency. Built via agent-credit-build; complements x402-seller-score (objective on-chain settlement history) with the self-built/staked layer. Use it to decide whether to trust an agent before transacting. Answers 'what is this agent credit score', 'is this wallet trustworthy', 'agentic FICO for an address'.
Price$0.01per request
MethodPOST
Route/v1/x402/agent-credit
StatusLive
MIME typeapplication/json
Rate limit120/minute
CacheNo cache
x402agentcredit-scorereputationficotrustcreditworthinessbond
API URL
Integration docshttps://x402.hexl.dev/v1/x402/agent-creditExample request
{
"wallet": "0xe9030014f5dae217d0a152f02a043567b16c1abf"
}Example response
{
"op": "score",
"wallet": "0xe9030014f5dae217d0a152f02a043567b16c1abf",
"score": 612,
"tier": "fair",
"found": true,
"factors": [
{
"name": "bondedStakeUsd",
"value": 5,
"points": 81.5,
"detail": "$5.00 cumulative credibility bond posted."
}
]
}Input schema
{
"type": "object",
"required": [
"wallet"
],
"properties": {
"wallet": {
"type": "string",
"examples": [
"0xe9030014f5dae217d0a152f02a043567b16c1abf"
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}