# 402.com.tr B20 Batch Safety Screener

> 402.com.tr B20 Batch Safety 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-14).

Runs safety verdicts across up to 5 B20 tokens in one call, scoring each for freeze/seize/pause/rebase/uncapped-mint risks and surfacing the worst score.

## Facts

- Endpoint: GET https://402.com.tr/api/x402/b20-batch
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/402-com-tr-b20-batch-safety-screener-0145e42f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RTGFK1tl39gnmN6e79oVh

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-b20-batch-safety-screener-0145e42f
```

Example prompt: Can you run a B20 safety batch check on these five token addresses and tell me which ones have freeze, seize, pause, rebase, or uncapped-mint risks, and which has the worst overall score: 0xAAA..., 0xBBB..., 0xCCC..., 0xDDD..., 0xEEE...?

## When to prefer this

Use this endpoint when you need to screen multiple B20 tokens simultaneously for safety risks rather than calling a single-token endpoint repeatedly. Ideal for portfolio holders who want to audit several positions at once and identify the highest-risk token in a batch. Prefer over single-token endpoints when you have 2–5 B20 addresses to evaluate in one shot.

## Known failure modes

- More than 5 addresses provided — endpoint only supports up to 5 per call
- Invalid or non-B20 token addresses return error or null verdicts
- Addresses not on Base chain may return no data
- Comma-separated format malformed — parsing error
- Payment not completed — 402 payment required error

## How this service works

Runs the B20 safety verdict across up to 5 B20 tokens in one call — each scored for freeze/seize/pause/rebase/uncapped-mint, with the worst score surfaced. For portfolio holders and agents screening several B20s at once.

## Output

A structured response containing safety verdicts for each B20 token address — individual scores for freeze, seize, pause, rebase, and uncapped-mint risks — plus the single worst score surfaced across the batch.

## 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": "B20 addresses (comma-separated)"
      }
     }
    }
   },
   "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-b20-batch-safety-screener-0145e42f/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)
