# SYNTHORA Token Alpha Report

> SYNTHORA Token Alpha Report is a paid API for AI agents from token-alpha.hergertsynthora.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Synthesizes security, market sentiment, derivatives data, and stress signals for a token into a single risk posture verdict

## Facts

- Endpoint: POST https://token-alpha.hergertsynthora.com/service
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/synthora-token-alpha-report-b1aad496
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uKPtZIKBAIDymPZIYMtyh

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 synthora-token-alpha-report-b1aad496 -d '<json body>'
```

Example prompt: Can you run a full SYNTHORA token alpha report on contract 0xabc123... on Base — I want to know the risk posture, security score, sentiment, and whether there are any honeypot or rug pull flags?

## When to prefer this

Choose this endpoint when you need a comprehensive, multi-dimensional token risk verdict in a single call — combining security auditing (honeypot/rug/phishing), market sentiment, derivatives signals, and a synthesized risk posture — rather than querying separate security, sentiment, or derivatives APIs individually. Ideal for pre-trade due diligence, DeFi screening agents, and portfolio risk monitoring where a single authoritative verdict is needed quickly at minimal cost.

## Known failure modes

- Invalid or non-existent token contract address returns an error or null security data
- Unsupported chain value returns validation error
- Token with no on-chain liquidity or very new token may return incomplete market_context
- Derivatives layer unavailable if no matching perp symbol is found
- Free tier exhausted (3 calls/wallet) returns payment required or quota error
- Network timeout on aggregating multiple data feeds returns partial result

## How this service works

Premium deep token-intelligence report for autonomous agents. Synthesizes 3 layers into one signed verdict: SECURITY (honeypot/rug/owner-privileges + address malicious/phishing), MARKET CONTEXT (composite stress score + fear/greed sentiment) and DERIVATIVES (funding rate + open interest). Returns a risk_posture (SAFE/CAUTION/HIGH-RISK) with reason codes. Composes SYNTHORA's own keyless feeds, deterministic, no API key. The token-alpha report whales pay 0.02-0.30 USDC for, at 0.01. First 3 calls FREE per wallet.

## Output

Returns a JSON object with a top-level verdict containing risk_posture (e.g. CAUTION, HIGH_RISK, SAFE), sentiment (e.g. Fear, Greed), market_regime (e.g. ELEVATED), and security_score (0–100), plus nested objects for security details (honeypot, rug, owner, malicious/phishing flags), derivatives data (funding rates, open interest), market context, and an array of reason_codes explaining the verdict.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain": {
   "type": "string",
   "description": "base|ethereum|bsc|polygon"
  },
  "symbol": {
   "type": "string",
   "description": "optional perp symbol e.g. BTCUSDT for derivatives layer"
  },
  "address": {
   "type": "string",
   "description": "token contract 0x..."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "verdict": {
   "sentiment": "Fear",
   "risk_posture": "CAUTION",
   "market_regime": "ELEVATED",
   "security_score": 55
  },
  "security": {},
  "derivatives": {},
  "reason_codes": [],
  "market_context": {}
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/synthora-token-alpha-report-b1aad496/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from token-alpha.hergertsynthora.com](https://www.zero.xyz/host/token-alpha.hergertsynthora.com/llms.txt)
