# Paysafe Agent Counterparty Reputation Lookup

> Paysafe Agent Counterparty Reputation Lookup is a paid API for AI agents from paysafe-agent.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Looks up aggregated community-filed reputation reports for a wallet address involved in x402 payments, returning scam/fraud signal counts and risk level.

## Facts

- Endpoint: GET https://paysafe-agent.com/v1/reputation/:address
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/paysafe-agent-counterparty-reputation-lookup-e82b78de
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_r-CsLjWXA3OHnXH3IfcBs

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 paysafe-agent-counterparty-reputation-lookup-e82b78de
```

Example prompt: Before I pay this agent, check the reputation of wallet address 0x4a3b...c9f2 — I want to know if other agents have reported it for scams, non-delivery, or any other abuse, and what the overall risk level is.

## When to prefer this

Use this endpoint when an AI agent is about to make an x402 payment and wants to vet the counterparty wallet address for known abuse patterns before proceeding. Prefer this over generic blockchain explorers because it specifically aggregates agent-reported abuse categories relevant to autonomous payment workflows (prompt injection, replay abuse, impersonation) rather than on-chain transaction history.

## Known failure modes

- Address not found — no reports exist yet, returns empty or zero-count response
- Invalid wallet address format — returns 400 error
- Service unavailable or timeout — returns 5xx error
- Payment failure — $0.01 USDC x402 payment rejected, returns 402

## How this service works

Counterparty reputation lookup for x402 payments: aggregated post-hoc reports (scam, non-delivery, prompt injection, overcharge, impersonation, replay abuse) filed by other agents, with distinct-reporter counts and risk level.

## Output

Returns aggregated post-hoc reports filed by other agents against the queried wallet address, including counts of distinct reporters per abuse category (scam, non-delivery, prompt injection, overcharge, impersonation, replay abuse) and an overall risk level assessment.

## 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"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "description": "Wallet address to look up"
      }
     }
    }
   },
   "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/paysafe-agent-counterparty-reputation-lookup-e82b78de/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from paysafe-agent.com](https://www.zero.xyz/host/paysafe-agent.com/llms.txt)
