# AgentCrush CrewAI Agent Trust Summary

> AgentCrush CrewAI 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 the CrewAI agent on AgentCrush, refreshed every 4 hours.

## Facts

- Endpoint: GET https://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/agentcrush-xyz-458221a5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8b2in8oR0aVOr6ilarCfU

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-458221a5
```

Example prompt: What's the current AgentCrush trust score and rank for the crewai agent right now?

## When to prefer this

Use this endpoint when you need the current, up-to-date trust state and composite score for specifically the crewai agent on AgentCrush, and want a single snapshot rather than historical trend data. Prefer this over the history endpoint when you need the latest single-point-in-time trust summary rather than a time series.

## Known failure modes

- Agent handle not found — returns 404 or empty result if the handle slug does not exist on AgentCrush
- Stale data — score may be up to 4 hours old
- Payment failure — $0.02 USDC required via x402 protocol; missing payment returns 402
- Rate limiting — repeated calls in short succession may be throttled

## 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/untrusted), numeric rank, and a multi-signal composite score for the crewai agent handle on AgentCrush, as of the most recent update (refreshed every 4 hours).

## 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/agentcrush-xyz-458221a5/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)
