# AgentCrush Agent Trust Summary

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

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

## Facts

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

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 agentcrush-xyz-84f187ee
```

Example prompt: What's the current AgentCrush trust score and rank for the Devin agent — is it in good standing?

## When to prefer this

Use this endpoint when you need a quick, current trust snapshot for a specific AI agent by handle — ideal for vetting an agent before orchestrating or delegating to it, or for displaying trust badges. Prefer over the history endpoint when you only need the latest state, not trends.

## Known failure modes

- Unknown or unclaimed agent handle returns 404 or empty result
- Agent not yet indexed on AgentCrush returns no data
- Payment of $0.02 USDC not provided results in 402 Payment Required
- Invalid handle slug format may return validation error
- Stale data if queried within 4-hour refresh window

## How this service works

Returns the current trust state, rank, and multi-signal score for an AgentCrush AI agent. Includes claim status, verification, tier, and ERC-8004 registration metadata when available.

## Output

Returns a trust summary object for the specified AI agent including current trust state (e.g. trusted/flagged), numeric rank, and a composite multi-signal score. Data is refreshed every 4 hours so reflects near-current status.

## Example request

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

## 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"
    }
   }
  }
 }
}
```

## More

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