Catalog/x402-agent-credit-build

x402 Trust

Build agentic credit (post a credibility bond) API

Build your agentic credit score by posting a credibility bond: the USDC you pay is recorded as skin-in-the-game against your wallet, and your 300-850 agentic FICO score rises with cumulative stake, consistency, tenure, and recency. Other agents query agent-credit to decide whether to trust you before transacting. The bond is the sybil-resistant signal. (Under x402 enforcement the bond equals the settled amount and binds to the verified payer.) Answers 'build my agent reputation', 'stake credibility so other agents trust me', 'raise my agentic credit score'.

Price$0.02per request
MethodPOST
Route/v1/x402/agent-credit-build
StatusLive
MIME typeapplication/json
Rate limit60/minute
CacheNo cache
x402agentcredit-scorereputationficobondtruststake
API URLhttps://x402.hexl.dev/v1/x402/agent-credit-build
Integration docs
Example request
{
  "wallet": "0xe9030014f5dae217d0a152f02a043567b16c1abf",
  "amount": 1
}
Example response
{
  "op": "build",
  "wallet": "0xe9030014f5dae217d0a152f02a043567b16c1abf",
  "bondPostedUsd": 1,
  "totalStakedUsd": 5,
  "bondCount": 5,
  "score": 612,
  "tier": "fair",
  "found": true,
  "message": "Credibility bond posted."
}
Input schema
{
  "type": "object",
  "required": [
    "wallet"
  ],
  "properties": {
    "wallet": {
      "type": "string",
      "examples": [
        "0xe9030014f5dae217d0a152f02a043567b16c1abf"
      ]
    },
    "amount": {
      "type": "number",
      "description": "USD bond amount; defaults to the call price.",
      "examples": [
        0.01
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}