# PALM Token Intelligence API

> PALM Token Intelligence API is a paid API for AI agents from api.palmai.tech, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-13).

Analyzes any EVM token contract and returns an AI-generated risk score, red flags, holder analysis, liquidity health, and plain-English verdict

## Facts

- Endpoint: POST https://api.palmai.tech/token-intel
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/palm-token-intelligence-api-42578926
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4lOA_UMvJKTVCjklAFCTh

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 palm-token-intelligence-api-42578926 -d '<json body>'
```

Example prompt: Can you run a PALM AI token intelligence check on the contract 0x6982508145454Ce325dDbE47a25d4ec3d2311933 on Ethereum — I want to see its risk score, any red flags, and a plain-English verdict before I buy?

## When to prefer this

Use this endpoint when you need a fast, AI-synthesized risk assessment of a specific EVM token before trading or investing, especially when you want a single plain-English verdict alongside quantitative signals like holder concentration and liquidity health. Prefer this over raw on-chain queries when you want structured risk scoring without building your own analysis pipeline. Best suited for Ethereum and Base network tokens.

## Known failure modes

- Invalid contract address format returns validation error
- Token contract not found on specified chain returns not-found error
- Unsupported chain value returns enum validation error
- Payment not fulfilled (x402) returns 402 Payment Required
- Newly deployed token with insufficient on-chain data may return incomplete analysis
- Network timeout or RPC issues may cause delayed or failed response

## How this service works

PALM Token Intelligence - AI-powered token analysis for any EVM token. Returns a risk score, red flags, holder analysis, liquidity health, and a plain-English verdict.

## Output

Returns an AI-powered analysis including a numerical risk score, a list of red flags detected (e.g. honeypot mechanics, concentrated holders, low liquidity), holder distribution analysis, liquidity health metrics, and a plain-English verdict summarizing whether the token appears safe or risky.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain": {
   "enum": [
    "ethereum",
    "base"
   ],
   "type": "string",
   "description": "Chain the token is deployed on (default: ethereum)"
  },
  "address": {
   "type": "string",
   "description": "EVM token contract address to analyze (0x...)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/palm-token-intelligence-api-42578926/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.palmai.tech](https://www.zero.xyz/host/api.palmai.tech/llms.txt)
