# AgentGate Solana Token Security Audit

> AgentGate Solana Token Security Audit is a paid API for AI agents from x402.agentsea.vn, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Audits a Solana SPL token mint address for security risks, returning a safety verdict, LP lock percentage, and normalized risk score.

## Facts

- Endpoint: POST https://x402.agentsea.vn/v1/solana/token-security
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentgate-solana-token-security-audit-55aaf70e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7ziv-cqITNMlf7xFoUgps

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 agentgate-solana-token-security-audit-55aaf70e -d '<json body>'
```

Example prompt: Can you run a security audit on the Solana token with mint address DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263 and tell me if it's safe, what the LP lock percentage is, and its risk score?

## When to prefer this

Choose this endpoint when you need a fast, per-request Solana token security check paid per-call via x402 micro-payment (USDC on Base L2 or Solana), without needing a subscription. Ideal for AI agents that need on-demand rug pull detection, LP lock verification, and risk scoring for arbitrary Solana SPL tokens before executing trades or investments.

## Known failure modes

- Invalid or non-existent mint address returns an error or empty result
- Non-SPL token addresses (e.g. EVM addresses) will fail validation
- Rate limiting or payment failure via x402 protocol results in 402 response
- Token with no liquidity pool data may return incomplete security fields
- Network congestion on Solana RPC may cause delayed or failed lookups

## How this service works

Dual-stack x402 & MPP autonomous payment gateway. Per-request micro-utilities for AI agents: clean web scraping ($0.001), prompt injection defense, and Solana token audit settled in USDC on Base L2 & Solana.

## Output

Returns a JSON object with the token's mint address, symbol, and a security object containing: a verdict string (e.g. 'SAFE'), the percentage of liquidity pool tokens that are locked (lp_locked_percent), and a normalized risk score (risk_score_normalized) on a numeric scale.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "mint"
   ],
   "properties": {
    "mint": {
     "type": "string",
     "description": "Solana SPL Token Mint address"
    }
   }
  },
  "output": {
   "mint": "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263",
   "symbol": "BONK",
   "security": {
    "verdict": "SAFE",
    "lp_locked_percent": 20.19,
    "risk_score_normalized": 7
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "mint": "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263",
  "symbol": "BONK",
  "security": {
   "verdict": "SAFE",
   "lp_locked_percent": 20.19,
   "risk_score_normalized": 7
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentgate-solana-token-security-audit-55aaf70e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.agentsea.vn](https://www.zero.xyz/host/x402.agentsea.vn/llms.txt)
