# AgentGate Solana Token Signal Audit

> AgentGate Solana Token Signal 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).

Analyzes a Solana SPL token mint address and returns trading signals, bonding phase, market cap zone, trailing stop, and sell targets for autonomous agent decision-making.

## Facts

- Endpoint: GET https://x402.agentsea.vn/v1/signals/token
- 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-signal-audit-7463fd99
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_yJYlV0pPvy9i_9cM1Pvoo

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-signal-audit-7463fd99
```

Example prompt: Check the trading signals for Solana token mint So11111111111111111111111111111111111111112 — tell me its bonding phase, current market cap zone, trailing stop, and whether the verdict is buy or sell.

## When to prefer this

Use this endpoint when an AI trading agent needs real-time Solana token phase classification, bonding status, and structured sell signals without building custom on-chain analytics. It is especially suited for agents operating on pump.fun or Raydium ecosystems where bonding curves and migration events drive price action. Prefer this over generic blockchain explorers when you need a pre-computed verdict and trailing stop rather than raw on-chain data.

## Known failure modes

- Invalid or non-existent mint address returns error or empty signals
- Token not yet indexed on-chain may return stale or missing phase data
- Invalid prev_zone_id value may cause zone comparison to fail
- Payment failure (insufficient USDC balance) results in 402 response blocking the call
- Network latency to Solana RPC may cause delayed or timeout responses

## 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, bonding phase (ALMOST_BONDED or MIGRATED), a signals object with market indicators, a plain-language verdict, trailing stop parameters, the current dynamic market cap zone (Z0–Z3), and migrate sell target levels — giving an agent everything needed to make an autonomous buy/sell/hold decision.

## 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 contract address"
    },
    "ath_mcap_usd": {
     "type": "number",
     "description": "Optional peak ATH market cap for trailing stop"
    },
    "prev_zone_id": {
     "type": "string",
     "description": "Optional previous sticky zone (Z0, Z1, Z2, Z3)"
    }
   }
  },
  "output": {
   "data": {
    "mint": "string",
    "phase": "ALMOST_BONDED | MIGRATED",
    "signals": "object",
    "verdict": "string",
    "trailing_stop": "object",
    "dynamic_mcap_zone": "object",
    "migrate_sell_targets": "object"
   },
   "success": true
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "mint": "string",
   "phase": "ALMOST_BONDED | MIGRATED",
   "signals": "object",
   "verdict": "string",
   "trailing_stop": "object",
   "dynamic_mcap_zone": "object",
   "migrate_sell_targets": "object"
  },
  "success": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentgate-solana-token-signal-audit-7463fd99/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)
