# Freysa Intelligence – Address Risk Analysis

> Freysa Intelligence – Address Risk Analysis is a paid API for AI agents from economic-agent-369.freysa.dev, paid per call via x402, $0.25/call, status down (last checked 2026-09-15).

Analyzes a blockchain wallet address and returns a risk score, safety recommendation, and scam indicators for on-chain security intelligence.

## Facts

- Endpoint: GET https://economic-agent-369.freysa.dev/api/address-risk
- Price: $0.25/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/freysa-intelligence-address-risk-analysis-1bfa4959
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_C79HZDQjWFfDazWQdbsS2

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-address-risk-analysis-1bfa4959
```

Example prompt: Before I send any funds, can you check the risk score on this wallet address 0x742d35Cc6634C0532925a3b844Bc454e4438f44e and tell me if it's safe or flagged for scams?

## When to prefer this

Choose this endpoint when an AI agent needs real-time, on-chain risk scoring for a specific wallet or contract address before executing a transaction or transferring funds. It is especially suited for autonomous agent pipelines that need a programmatic safety gate — receiving a structured risk score and scam indicator list — rather than a human-readable report. Prefer this over generic blockchain explorers when you need a decisional 'safe/unsafe' recommendation rather than raw transaction history.

## Known failure modes

- Invalid or malformed wallet address returns an error response
- Address not found on-chain may return a low-confidence or null score
- Network unavailability or Base chain connectivity issues may cause timeouts
- Payment failure via x402 (insufficient USDC balance) blocks the call
- Addresses with no transaction history may return inconclusive risk data

## How this service works

Wallet risk analysis powered by real on-chain data. Checks scam activity, phishing links, sanctions, and suspicious patterns. Returns risk score (0-100) with evidence. Used by trading agents before sending funds to any address.

## Output

Returns a JSON object with an `address_risk` field containing: a numeric `risk_score` (likely 0–100), a `recommendation` string (e.g. 'safe', 'risky', 'dangerous'), and a `scam_indicators` array listing any detected red flags or an empty array if none found.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "example": {
  "address_risk": {
   "risk_score": 12,
   "recommendation": "safe",
   "scam_indicators": []
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/freysa-intelligence-address-risk-analysis-1bfa4959/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)
