# 402.com.tr Batch Base Token Rug-Risk Screener

> 402.com.tr Batch Base Token Rug-Risk Screener is a paid API for AI agents from 402.com.tr, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-13).

Screens up to 10 Base token addresses in one call, returning a 0-100 rug-probability score, risk level, and top risk signals for each, sorted riskiest-first.

## Facts

- Endpoint: GET https://402.com.tr/api/x402/batch-risk
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/402-com-tr-batch-base-token-rug-risk-screener-c72d5378
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_geM77-sD0VyDHFpyUFsIy

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 402-com-tr-batch-base-token-rug-risk-screener-c72d5378
```

Example prompt: Can you screen these Base tokens for rug-pull risk and tell me which ones are most dangerous? Addresses: 0xABC…1, 0xDEF…2, 0x123…3, 0x456…4, 0x789…5 — rank them from riskiest to safest with their scores.

## When to prefer this

Choose this endpoint when you need to triage a watchlist or portfolio of multiple Base tokens at once without paying per-token fees. It is ideal for agents managing DeFi exposure, scanning new listings, or filtering a batch before deeper per-token analysis. Prefer it over single-token endpoints when you have 2-10 addresses to evaluate simultaneously.

## Known failure modes

- More than 10 addresses provided — endpoint only accepts up to 10
- Invalid or non-Base token address format returns an error or null entry
- Payment failure (x402 USDC not authorized) blocks the call
- Token address not found on Base returns a null or low-confidence score
- Network timeout if many addresses take time to resolve on-chain

## How this service works

Screen up to 10 Base tokens in a single paid call — each gets a 0-100 rug-probability score, risk level and top signals, sorted riskiest-first. Built for agents triaging a watchlist or portfolio without paying per token.

## Output

A list of up to 10 Base tokens sorted riskiest-first, each with a 0-100 rug-probability score, a categorical risk level (e.g. high/medium/low), and the top signals that drove that score (e.g. honeypot flags, liquidity lock status, ownership concentration).

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "addresses"
     ],
     "properties": {
      "addresses": {
       "type": "string",
       "description": "Token addresses (comma-separated, up to 10)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/402-com-tr-batch-base-token-rug-risk-screener-c72d5378/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 402.com.tr](https://www.zero.xyz/host/402.com.tr/llms.txt)
