# AlphaPipeline Token Risk Scanner

> AlphaPipeline Token Risk Scanner is a paid API for AI agents from alphapipeline-eu.onrender.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Checks a token contract address for honeypot status, buy/sell tax, mintability, and ownership renouncement using GoPlus and Honeypot.is data sources.

## Facts

- Endpoint: GET https://alphapipeline-eu.onrender.com/v1/security/token-risk
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/alphapipeline-token-risk-scanner-3bfb8927
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SPabKkMasmyt0NUgDvfa0

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 alphapipeline-token-risk-scanner-3bfb8927
```

Example prompt: Before I buy, can you run a security check on the token at contract 0x4200000000000000000000000000000000000006 on Base (chain ID 8453) — I need to know if it's a honeypot, what the buy/sell taxes are, and whether ownership has been renounced?

## When to prefer this

Choose this endpoint when an agent or trading bot needs a quick pre-buy token safety check on any EVM chain, particularly to detect honeypots and excessive taxes before executing a swap. It is ideal for automated DeFi bots, portfolio scanners, or alert systems that need a single structured risk verdict with actionable flags. Prefer this over raw on-chain analysis when speed and simplicity matter more than exhaustive audit depth, and when GoPlus/Honeypot.is coverage is sufficient for the chain in question.

## Known failure modes

- Contract address not found on specified chain — returns null values for risk fields
- Unsupported chain ID — endpoint may return an error or empty data
- Token not yet indexed by GoPlus or Honeypot.is — data_source may indicate limited coverage
- Malformed contract address (non-0x or wrong length) — validation error
- Rate limiting or upstream API unavailability from GoPlus/Honeypot.is — may return stale or null data
- Network timeout on render.com cold start — slow first response after inactivity

## How this service works

GoPlus/Honeypot.is-backed token security check - honeypot flag, buy/sell tax, mintability, and ownership renouncement for a given contract address, so a bot can decide before it buys.

## Output

Returns a structured risk report including: overall risk level (e.g. low/medium/high), a list of specific risk flags, honeypot boolean, buy and sell tax percentages, mintability status, ownership renouncement status, whether the token is listed on a DEX, holder count, token name and symbol, data source attribution, and UTC/KST timestamps for when the scan was generated.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "chain_id",
      "contract_address"
     ],
     "properties": {
      "chain_id": {
       "type": "integer",
       "description": "EVM chain id, e.g. 8453 for Base."
      },
      "contract_address": {
       "type": "string",
       "description": "Token contract address (0x...)."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "title": "TokenRiskResponse",
     "required": [
      "generated_at",
      "chain_id",
      "contract_address",
      "risk_level",
      "data_source"
     ],
     "properties": {
      "notice": {
       "anyOf": [
        {
         "type": "string"
        },
        {
         "type": "null"
        }
       ],
       "title": "Notice",
       "default": null
      },
      "chain_id": {
       "type": "integer",
       "title": "Chain Id"
      },
      "is_in_dex": {
       "anyOf": [
        {
         "type": "boolean"
        },
        {
         "type": "null"
        }
       ],
       "title": "Is In Dex",
       "default": null
      },
      "risk_flags": {
       "type": "array",
       "items": {
        "type": "string"
       },
       "title": "Risk Flags",
       "default": []
      },
      "risk_level": {
       "type": "string",
       "title": "Risk Level"
      },
      "token_name": {
       "anyOf": [
        {
         "type": "string"
        },
        {
         "type": "null"
        }
       ],
       "title": "Token Name",
       "default": null
      },
      "buy_tax_pct": {
       "anyOf": [
        {
         "type": "number"
        },
        {
         "type": "null"
        }
       ],
       "title": "Buy Tax Pct",
       "default": null
      },
      "data_source": {
       "type": "string",
       "title": "Data Source"
      },
      "is_honeypot": {
       "anyOf": [
        {
         "type": "boolean"
        },
        
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/alphapipeline-token-risk-scanner-3bfb8927/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from alphapipeline-eu.onrender.com](https://www.zero.xyz/host/alphapipeline-eu.onrender.com/llms.txt)
