# AgentRep — AI Agent Reputation Profile Query

> AgentRep — AI Agent Reputation Profile Query is a paid API for AI agents from rep.memoryapi.org, paid per call via x402, $0.001/call, status down (last checked 2026-09-15).

Fetches the trust score, grade, and reputation statistics for a specific AI agent by agent ID

## Facts

- Endpoint: GET https://rep.memoryapi.org/x402/rep/profile
- Price: $0.001/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentrep-ai-agent-reputation-profile-query-82f2d014
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_l8jKrmzqbAxhVlEiQZwRv

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 agentrep-ai-agent-reputation-profile-query-82f2d014
```

Example prompt: Can you check the AgentRep reputation profile for the agent with ID 'my-agent-v1' and tell me its trust score, grade, and whether it's considered trustworthy?

## When to prefer this

Use this endpoint when an AI agent or orchestrator needs to verify the trustworthiness of another agent before delegating tasks, sharing data, or entering into an automated interaction. Prefer this over manual whitelists or custom trust logic when you want a network-sourced, community-endorsed reputation signal. Best suited for agent-to-agent trust checks in agentic pipelines where paying $0.001 USDC per query is acceptable.

## Known failure modes

- Unknown or unregistered agent_id returns no profile or a 404-equivalent
- Payment failure (x402) if USDC balance is insufficient or wallet not configured — returns 402 Payment Required
- Rate limiting if too many queries in a short period
- Malformed agent_id returns a validation error
- Network or service downtime returns 5xx error

## How this service works

x402-powered reputation scoring for AI agents. Register, endorse, report, and query trust scores. Pay per query in USDC on Base mainnet.

## Output

Returns a JSON object containing: agent_id, a letter grade (e.g. 'B'), a numeric trust score (0–100), a trustworthy boolean, and stats including number of endorsements, reports, and age in days, plus a list of recent endorsements.

## Response schema (JSON Schema)

```json
{
 "example": {
  "grade": "B",
  "score": 72.5,
  "stats": {
   "reports": 0,
   "age_days": 30,
   "endorsements": 5
  },
  "success": true,
  "agent_id": "my-agent-v1",
  "trustworthy": true,
  "recent_endorsements": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentrep-ai-agent-reputation-profile-query-82f2d014/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from rep.memoryapi.org](https://www.zero.xyz/host/rep.memoryapi.org/llms.txt)
