# Freysa Intelligence Token Risk Analyzer

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

Analyzes a token contract address on a specified blockchain for security risks, returning token metadata and a risk assessment

## Facts

- Endpoint: POST https://economic-agent-369.freysa.dev/api/token-analyze
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/freysa-intelligence-token-risk-analyzer-b960145d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YwNeyqJfWF4fKSzl5SFrk

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-token-risk-analyzer-b960145d -d '<json body>'
```

Example prompt: Before I swap into it, can you run a security check on this Base token at contract address 0x1234...abcd and tell me the risk level?

## When to prefer this

Choose this endpoint when an AI agent needs to programmatically screen a token contract for security risks before executing a trade, adding a token to a watchlist, or approving a DeFi interaction. It is especially valuable in agentic workflows where automated safety checks are required prior to any on-chain financial action involving an unknown token on Base or other EVM chains.

## Known failure modes

- Invalid or non-existent contract address returns an error or empty result
- Token exists on a chain other than the one specified, causing a lookup failure
- Rate limiting or payment failure via x402 if USDC balance is insufficient
- Contract address is valid but token has no on-chain metadata, resulting in incomplete fields
- Unsupported blockchain network specified in the chain parameter

## How this service works

Security intelligence layer for autonomous agents. On-chain security, token risk analysis, wallet forensics, and transaction simulation. Pay-per-call via x402 on Base.

## Output

Returns the token's name and symbol, plus a risk assessment string indicating the security level or identified threats (e.g. honeypot, rug pull indicators, ownership risks). Useful for making informed decisions before interacting with an unknown token.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "token"
 ],
 "properties": {
  "chain": {
   "type": "string",
   "description": "Blockchain network (default: base)"
  },
  "token": {
   "type": "string",
   "description": "Token contract address"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "name": {
   "type": "string",
   "description": "Token name"
  },
  "symbol": {
   "type": "string",
   "description": "Token symbol"
  },
  "risk_assessment": {
   "type": "string",
   "description": "Risk assessment"
  }
 }
}
```

## More

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