# AgentGate Solana Token Signal Evidence

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

Retrieves on-chain signal evidence and convergence analysis for a Solana token mint address, including supply audit, market evidence, wallet convergence, and win probability assessment.

## Facts

- Endpoint: GET https://x402.agentsea.vn/v1/intel/token/%7Bmint%7D/signal-evidence
- Price: $0.1/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-evidence-f4997724
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__8vaiZZwTJIvpg36hnjK4

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-evidence-f4997724
```

Example prompt: Can you pull the signal evidence for Solana token mint EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v and tell me what the signal state is — whether there's wallet convergence, what the win probability looks like, and flag any suspicious supply or market evidence?

## When to prefer this

Choose this endpoint when you need structured, cryptographically verifiable on-chain signal intelligence for a specific Solana token mint — particularly for detecting wallet convergence, supply anomalies, or coordinated market activity. Prefer it over generic blockchain explorers when you need a machine-readable signal_state enum and evidence SHA-256 for automated decision pipelines or compliance workflows. Best suited for AI agents performing automated token risk screening or DeFi due diligence.

## Known failure modes

- Invalid or malformed mint address returns an error or UNKNOWN signal_state
- Non-existent mint address may return NO_MATCH_OBSERVED or an error
- Payment failure via x402 protocol results in 402 Payment Required before data is returned
- Rate limiting or network issues may cause timeouts
- Insufficient on-chain data for new or low-activity tokens may yield UNKNOWN win_probability status

## 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 success flag and a data payload containing: signal_state (one of CONVERGENCE_OBSERVED, TRACKED_FLOW_OBSERVED, NO_MATCH_OBSERVED, or UNKNOWN), supply_audit object, market_evidence object, wallet_convergence object, win_probability with value and status, a SHA-256 evidence hash for cryptographic verification, and the schema version string.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "max_transactions": {
     "type": "integer",
     "default": 25,
     "maximum": 50,
     "minimum": 1
    }
   }
  },
  "output": {
   "data": {
    "signal_state": "CONVERGENCE_OBSERVED|TRACKED_FLOW_OBSERVED|NO_MATCH_OBSERVED|UNKNOWN",
    "supply_audit": {},
    "schema_version": "agentgate-edge.signal-evidence.v1",
    "evidence_sha256": "sha256",
    "market_evidence": {},
    "win_probability": {
     "value": null,
     "status": "UNKNOWN"
    },
    "wallet_convergence": {}
   },
   "success": true
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "signal_state": "CONVERGENCE_OBSERVED|TRACKED_FLOW_OBSERVED|NO_MATCH_OBSERVED|UNKNOWN",
   "supply_audit": {},
   "schema_version": "agentgate-edge.signal-evidence.v1",
   "evidence_sha256": "sha256",
   "market_evidence": {},
   "win_probability": {
    "value": null,
    "status": "UNKNOWN"
   },
   "wallet_convergence": {}
  },
  "success": true
 }
}
```

## More

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