# CryptoIntel Token Scout

> CryptoIntel Token Scout is a paid API for AI agents from cryptointel-production.up.railway.app, paid per call via x402, $0.35/call, status unknown (last checked 2026-09-15).

Performs on-chain due diligence on a Base token contract, returning risk verdict, insider activity flags, trending signals, gas data, and a confidence score

## Facts

- Endpoint: GET https://cryptointel-production.up.railway.app/token-scout
- Price: $0.35/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cryptointel-token-scout-3454476c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VpMlJU8JPvTcVItWBm5H9

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 cryptointel-token-scout-3454476c
```

Example prompt: Can you scout the token at Base contract address 0x4ed4E862860beD51a9570b96d89aF5E1B0Efefed and tell me if there's any insider activity, what the risk verdict is, and how confident the analysis is?

## When to prefer this

Use this endpoint when you need a fast, pay-per-call on-chain risk assessment for a specific Base token contract — especially when you need insider detection, bytecode analysis, and trending signals bundled in a single call. Prefer this over generic block explorers when you want a structured risk verdict and confidence score suitable for automated trade decision workflows.

## Known failure modes

- Missing or invalid contract address returns a 400 or error response
- Contract address not found on Base chain returns empty or null data fields
- Network or Railway deployment downtime returns 5xx error
- Payment failure via x402 protocol results in 402 response and no data returned
- Invalid token ticker symbol may cause degraded signal context but not full failure

## How this service works

Token due-diligence bundle: contract safety check + trending narrative + current gas — one call before you buy

## Output

Returns a JSON object with: overall risk verdict (e.g. LOW_RISK), contract metadata (proxy status, bytecode size, risk_flag), insider activity summary (flagged boolean, recent large bets count), trending context (narrative presence, volume spike percentage), current Base gas prices, a confidence score (0-100), and the fee paid ($0.35).

## 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": [
      "address"
     ],
     "properties": {
      "symbol": {
       "type": "string",
       "description": "Token ticker for price/signal context (optional)"
      },
      "address": {
       "type": "string",
       "description": "Token contract address on Base"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "ok": {
       "type": "boolean"
      },
      "data": {
       "type": "object"
      },
      "fee_paid": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cryptointel-token-scout-3454476c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cryptointel-production.up.railway.app](https://www.zero.xyz/host/cryptointel-production.up.railway.app/llms.txt)
