# Nexus Zero Token Intel – Composite Risk Intelligence

> Nexus Zero Token Intel – Composite Risk Intelligence is a paid API for AI agents from nexus-zero.xyz, paid per call via x402, $0.01/call, status down (last checked 2026-09-15).

Returns a composite Solana token risk verdict (CLEAN→RUGGED), weighted multi-source risk score, LP-lock depth, holder-lock concentration, and authority flags for a given SPL token mint address.

## Facts

- Endpoint: GET https://nexus-zero.xyz/v1/intel
- Price: $0.01/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/nexus-zero-token-intel-composite-risk-intelligence-feb2d7b3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FlbvkdL7EmoX0ki3hJhEY

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 nexus-zero-token-intel-composite-risk-intelligence-feb2d7b3
```

Example prompt: Can you run a full risk check on this Solana token — mint address 7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU — and tell me the verdict, risk score, whether the LP is locked, and if any top holders are suspicious?

## When to prefer this

Choose this endpoint when you need a comprehensive, multi-signal Solana token risk assessment in a single call — combining LP lock depth, holder concentration, authority flags, and insider signals into one weighted score and verdict. Prefer it over single-signal checks (e.g. authority-only or holder-only audits) when you need a holistic pre-trade or due-diligence view. Best for agents evaluating unknown or newly launched tokens before a swap, listing, or investment decision.

## Known failure modes

- Invalid or non-existent mint address returns error or UNKNOWN verdict
- Low confidence score if fewer than expected data sources respond
- Newly launched tokens with no on-chain history may return UNKNOWN
- Rate limiting or payment failure returns 402 or 429 status
- Timeout if multiple upstream data sources are slow

## How this service works

Composite Solana token risk intelligence: verdict (CLEAN→RUGGED), weighted multi-source risk score, first-class LP-lock and holder-lock depth, authority flags, insider signals.

## Output

Returns a JSON object containing: the mint address, a verdict enum (CLEAN, LOW_RISK, MODERATE_RISK, HIGH_RISK, RUGGED, or UNKNOWN), a composite risk score from 0–100 (higher = riskier), a confidence value (0–1) reflecting how many configured data sources responded, an lpLock object with LP pool details including TVL, locked percentage, and burn percentage, and a holderLocks object with top-10 holder concentration and lock status.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "mint"
     ],
     "properties": {
      "mint": {
       "type": "string",
       "pattern": "^[1-9A-HJ-NP-Za-km-z]{32,44}$",
       "description": "Base58 Solana SPL token mint address to analyze"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "mint": {
       "type": "string"
      },
      "lpLock": {
       "type": [
        "object",
        "null"
       ],
       "description": "LP pools, TVL, locked %, burn % — first-class rug signals"
      },
      "verdict": {
       "enum": [
        "CLEAN",
        "LOW_RISK",
        "MODERATE_RISK",
        "HIGH_RISK",
        "RUGGED",
        "UNKNOWN"
       ],
       "type": "string"
      },
      "riskScore": {
       "type": [
        "number",
        "null"
       ],
       "description": "0-100 composite risk, higher = riskier"
      },
      "confidence": {
       "type": "number",
       "description": "0-1 share of configured sources that responded"
      },
      "holderLocks": {
       "type": [
        "object",
        "null"
       ],
       "description": "top-10 holder concentration and lock status"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/nexus-zero-token-intel-composite-risk-intelligence-feb2d7b3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from nexus-zero.xyz](https://www.zero.xyz/host/nexus-zero.xyz/llms.txt)
