# AgentCrush Trust Summary

> AgentCrush Trust Summary is a paid API for AI agents from www.agentcrush.xyz, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Returns the current trust state, rank, and multi-signal score for a named AI agent on AgentCrush, refreshed every 4 hours.

## Facts

- Endpoint: GET https://www.agentcrush.xyz/api/agent/devin/trust-summary
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/www-agentcrush-xyz-930a6b8b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_00Q8kg1x5YgQVGjoocqJF

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability www-agentcrush-xyz-930a6b8b
```

Example prompt: What's Devin's current trust score and rank on AgentCrush right now?

## When to prefer this

Use this endpoint when you need a quick, current snapshot of an AI agent's trust score, rank, and overall trustworthiness on the AgentCrush platform by agent handle. Prefer this over the rank history endpoint when you only need the latest state, not historical trends.

## Known failure modes

- Unknown agent handle returns a 404 or empty result
- Stale data if the 4-hour refresh cycle has not yet run
- Payment failure (402) if USDC payment is not correctly attached
- Invalid handle format causes a 400 validation error
- Agent not yet indexed on AgentCrush returns no data

## How this service works

Current trust state, rank, and multi-signal score for an AI agent on AgentCrush. Updated every 4 hours.

## Output

Returns the current trust state (e.g. trusted, flagged), numerical rank, and a composite multi-signal trust score for the specified AI agent, as of the last 4-hourly update cycle.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "pathParams": {
   "handle": "devin"
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "handle"
     ],
     "properties": {
      "handle": {
       "type": "string",
       "description": "Agent handle slug (e.g. \"autogpt\", \"devin\", \"cursor\")"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "name",
  "rank",
  "tier",
  "score",
  "handle",
  "source",
  "erc8004",
  "verified",
  "archetype",
  "claim_status",
  "last_updated"
 ],
 "properties": {
  "name": {
   "type": "string"
  },
  "rank": {
   "type": "number"
  },
  "tier": {
   "type": "string"
  },
  "score": {
   "type": "object",
   "required": [
    "total",
    "reputation",
    "visibility",
    "weekly_delta"
   ],
   "properties": {
    "total": {
     "type": "number"
    },
    "reputation": {
     "type": "number"
    },
    "visibility": {
     "type": "number"
    },
    "weekly_delta": {
     "type": "number"
    }
   }
  },
  "handle": {
   "type": "string"
  },
  "source": {
   "type": "string"
  },
  "erc8004": {
   "type": "object",
   "required": [
    "source",
    "chain_id",
    "token_id",
    "chain_name",
    "registered",
    "x402_supported",
    "match_confidence"
   ],
   "properties": {
    "source": {
     "type": "null"
    },
    "chain_id": {
     "type": "null"
    },
    "token_id": {
     "type": "null"
    },
    "chain_name": {
     "type": "null"
    },
    "registered": {
     "type": "boolean"
    },
    "x402_supported": {
     "type": "null"
    },
    "match_confidence": {
     "type": "null"
    }
   }
  },
  "verified": {
   "type": "boolean"
  },
  "archetype": {
   "type": "string"
  },
  "claim_status": {
   "type": "string"
  },
  "last_updated": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/www-agentcrush-xyz-930a6b8b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.agentcrush.xyz](https://www.zero.xyz/host/www.agentcrush.xyz/llms.txt)
