# PaySafe Counterparty Reputation Lookup

> PaySafe 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).

Look up a wallet address in the counterparty reputation registry to see aggregated fraud/scam reports submitted by other agents and users.

## Facts

- Endpoint: GET https://paysafe-agent.com/v1/reputation/report
- 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-counterparty-reputation-lookup-24a2ec35
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_i8ywZN7g3csQpcRHdCSfT

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-counterparty-reputation-lookup-24a2ec35
```

Example prompt: Before I pay this invoice, check the reputation of wallet address 0xAbC123... in the PaySafe registry to see if it's been reported for scams or non-delivery.

## When to prefer this

Use this endpoint when you want a quick, free-form reputation history for a specific wallet address based on community-submitted reports — especially before settling any x402 payment. Prefer this over the payment firewall scan endpoints when you already have an address and want to check its post-hoc complaint history rather than scan an active payment offer. Ideal as a lightweight pre-payment due-diligence step in any agentic payment flow.

## Known failure modes

- Address not found in registry — returns empty or clean result with zero reports
- Invalid wallet address format — likely returns a 400 error
- Address has no reports yet — returns report_count: 0 with no categories
- Network timeout or service unavailability — returns 5xx error
- Address belongs to a new scammer not yet reported — registry blind spot (false negative)

## How this service works

Check a payment for fraud before your agent sends it. Call PaySafe before settling any x402 payment to avoid paying attacker-controlled addresses injected into content the agent just read (prompt-injection-triggered payments), replayed authorizations, inflated prices, leaked secrets in payment metadata, fake/lookalike USDC contracts, and address poisoning. Returns allow/flag/block with machine-readable reasons and an Ed25519-signed verdict. Advisory and non-custodial — never touches keys or funds. Includes a free-to-use counterparty reputation registry.

## Output

Returns a JSON object with a risk level (e.g. low/medium/high), status (e.g. reported/clean), the queried address, a breakdown of fraud categories (overcharge, non_delivery, etc.) with counts, total report count, and number of distinct reporters who submitted those reports.

## 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"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "risk": "medium",
  "status": "reported",
  "address": "0x…",
  "categories": {
   "overcharge": 1,
   "non_delivery": 2
  },
  "report_count": 3,
  "distinct_reporters": 2
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/paysafe-counterparty-reputation-lookup-24a2ec35/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)
