# Freysa Intelligence – Should I Buy Token Analysis

> Freysa Intelligence – Should I Buy Token Analysis is a paid API for AI agents from economic-agent-369.freysa.dev, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Analyzes a crypto token or asset and returns a buy/sell decision with confidence score, risk score, and reasoning based on on-chain security, liquidity, and contract verification data.

## Facts

- Endpoint: GET https://economic-agent-369.freysa.dev/api/should-i-buy
- Price: $0.05/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-should-i-buy-token-analysis-bb68072c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5w195NeelutVmx__Ba_g1

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-should-i-buy-token-analysis-bb68072c
```

Example prompt: Should I buy this token? Run a security analysis on contract 0xAbC123... on Base — check its liquidity, whether the contract is verified, and give me a risk score and buy/sell recommendation.

## When to prefer this

Choose this endpoint when an autonomous agent needs a fast, pay-per-call security gate before executing a token purchase on Base — especially when you need a structured BUY/AVOID decision with confidence and risk scores rather than raw chain data. Prefer this over general blockchain explorers when you need opinionated AI-driven recommendations with reasoning, and over manual audits when speed and automation matter. Ideal for DeFi trading bots, portfolio agents, and agentic wallets that need lightweight, inline security checks without building custom risk models.

## Known failure modes

- Invalid or missing token/contract input — returns error or empty schema response
- Token not found on Base chain — insufficient on-chain data to assess
- Payment failure via x402 — call not processed if 0.25 USDC payment not settled
- Unverified or honeypot contract with insufficient data — low-confidence result
- Rate limiting or service unavailability — no response or timeout

## How this service works

BUY/AVOID/CAUTION decision for any token. Combines honeypot check, contract risk, liquidity analysis, and holder concentration. Returns structured decision with confidence score and evidence. Deterministic pipeline.

## Output

Returns a JSON object with a 'should_i_buy' field containing: a 'decision' (e.g. BUY or SELL/AVOID), a 'confidence' percentage (0-100), a 'risk_score' (0-100, lower is safer), and a 'reasons' array listing specific factors like liquidity quality, contract verification status, and on-chain red flags.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain": {
   "type": "string",
   "default": "base",
   "description": "Blockchain"
  },
  "capital": {
   "type": "number",
   "description": "Capital in USD"
  },
  "token_address": {
   "type": "string",
   "description": "Token address"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "example": {
  "should_i_buy": {
   "reasons": [
    "Good liquidity",
    "Contract verified"
   ],
   "decision": "BUY",
   "confidence": 87,
   "risk_score": 23
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/freysa-intelligence-should-i-buy-token-analysis-bb68072c/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)
