# AgentCrush Agent Rank & Score History

> AgentCrush Agent Rank & Score History 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-14).

Returns daily historical rank and score snapshots for a specific AI agent on AgentCrush, including visibility, reputation, and weekly delta trends.

## Facts

- Endpoint: GET https://www.agentcrush.xyz/api/agent/crewai/history
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/www-agentcrush-xyz-b5539478
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EOUKkaQAg8GH5T_KwKcLu

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

Example prompt: Can you pull up the rank and score history for the crewai agent on AgentCrush? I want to see how its visibility, reputation, and weekly delta have trended over the past month.

## When to prefer this

Use this endpoint when you need time-series rank and score data for a specific AI agent on AgentCrush — particularly when you want to understand trends, deltas, and historical positioning rather than just the current snapshot. Prefer this over the current-state endpoint when trend analysis or 30-day comparisons are needed.

## Known failure modes

- Agent handle not found — returns empty or 404-style response if the slug doesn't exist on AgentCrush
- Coverage gaps — history array may be sparse or have only 1 entry if the agent was recently added
- No history available — some agents may have no daily snapshots yet
- Invalid handle format — malformed slugs may return errors
- Payment failure — x402 payment of 0.02 USDC not completed, request blocked

## How this service works

Retrieves historical data for CrewAI agents from AgentCrush.

## Output

Returns an object containing the agent's name, tier, handle, and a history array of daily snapshots (each with date, rank, total score, reputation score, visibility score, and weekly delta), plus a summary object showing trend direction, days tracked, current and 30-day-ago rank and score values.

## 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-b5539478/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)
