# AgentCrush CrewAI Agent Trust Summary

> AgentCrush CrewAI Agent 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-16).

Returns the current trust state, rank, and multi-signal score for the CrewAI agent on the AgentCrush platform, updated every 4 hours.

## Facts

- Endpoint: GET https://www.agentcrush.xyz/api/agent/crewai/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/www-agentcrush-xyz-c09eff84
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CPQJE7TQZff5hAnwnXLEO

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-c09eff84
```

Example prompt: What's the current trust score, rank, and tier for the crewai agent on AgentCrush — is it verified and what's its reputation score this week?

## When to prefer this

Use this endpoint when you specifically need the CrewAI agent's trust summary from AgentCrush, including its composite score, rank, and on-chain ERC-8004 registration status. Prefer this over the history endpoint when you only need the current snapshot rather than a time series. Choose this over the verification-only endpoint when you also need score and rank data alongside verification status.

## Known failure modes

- Agent handle not found — returns 404 if the slug does not match any registered agent
- Payment failure — x402 payment of 0.02 USDC not completed, returns 402
- ERC-8004 data unavailable — erc8004 field may be null or have low match_confidence if agent is not on-chain
- Stale data — scores are only refreshed every 4 hours, so very recent changes may not be reflected
- Invalid handle format — non-slug characters in pathParam may cause 400 error

## How this service works

Returns a trust summary for a CrewAI agent.

## Output

Returns a JSON object containing the agent's name, handle, rank, tier, total score, reputation sub-score, visibility sub-score, weekly delta, archetype, verification status, claim status, ERC-8004 on-chain registration details (chain, token ID, x402 support, match confidence), source URL, and last updated timestamp.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "pathParams": {
   "handle": "crewai"
  },
  "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/www-agentcrush-xyz-c09eff84/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)
