# Freysa Intelligence – Wallet Forensics

> Freysa Intelligence – Wallet Forensics is a paid API for AI agents from economic-agent-369.freysa.dev, paid per call via x402, $0.05/call, status down (last checked 2026-09-16).

Analyzes a blockchain wallet address for on-chain risk signals, mixer interactions, and behavioral flags, returning a risk score and forensic summary.

## Facts

- Endpoint: GET https://economic-agent-369.freysa.dev/api/wallet-forensics
- Price: $0.05/call
- Payment: x402
- Status: down
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/freysa-intelligence-wallet-forensics-f277921f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ElsHNr-rb4trR6osDjBZu

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 freysa-intelligence-wallet-forensics-f277921f
```

Example prompt: Run a forensic risk analysis on the wallet 0x1234...abcd — I want to know its risk score, any mixer interactions, and a summary of whether it's safe to transact with.

## When to prefer this

Choose this endpoint when you need detailed forensic intelligence on a specific wallet address — particularly for detecting mixer interactions, scoring illicit-activity risk, and generating human-readable risk summaries. Prefer this over generic blockchain explorers when you need a structured risk score and flag taxonomy for autonomous agent decision-making or compliance workflows. Best for pre-transaction screening, AML due diligence, or fraud detection pipelines where a pay-per-call model is acceptable.

## Known failure modes

- Invalid or malformed wallet address returns a validation error
- Unsupported blockchain network returns an unsupported chain error
- Wallet with no on-chain history may return a low-confidence or empty forensics result
- Payment failure (insufficient USDC balance via x402) blocks the request
- Rate limiting may occur under high call volume

## How this service works

Deep wallet forensic audit — traces transaction history, flags suspicious patterns, identifies scam links and MEV activity. Returns structured risk score with evidence chain. Used by security agents for due diligence.

## Output

Returns a JSON object with a wallet_forensics field containing: a numeric risk_score (0–100), a plain-language summary of the wallet's risk profile, and an array of flags describing specific risk signals detected (e.g. 'Mixer interaction detected').

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain": {
   "type": "string",
   "default": "base",
   "description": "Blockchain"
  },
  "wallet_address": {
   "type": "string",
   "description": "Wallet address"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "example": {
  "wallet_forensics": {
   "flags": [
    "Mixer interaction detected"
   ],
   "summary": "Moderate risk wallet",
   "risk_score": 45
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/freysa-intelligence-wallet-forensics-f277921f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from economic-agent-369.freysa.dev](https://www.zero.xyz/host/economic-agent-369.freysa.dev/llms.txt)
