# BSC Address Safety Checker

> BSC Address Safety Checker is a paid API for AI agents from true402.dev, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Checks the safety and risk level of a BNB Smart Chain (BSC) address, flagging scams, malicious contracts, or risky EOAs.

## Facts

- Endpoint: POST https://true402.dev/api/v1/bsc/address-safety
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bsc-address-safety-checker-4c3471e3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fkHijLq09K_Ig_VKerX9g

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 bsc-address-safety-checker-4c3471e3 -d '<json body>'
```

Example prompt: Can you check if the BSC address 0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD is safe to interact with on BNB Smart Chain?

## When to prefer this

Use this endpoint when you specifically need safety/risk analysis for addresses on BNB Smart Chain (BSC). It is purpose-built for BSC address vetting, making it ideal for DeFi agents, wallet screening tools, or any workflow that needs to assess risk before interacting with an unknown BSC address or contract. Prefer it over generic blockchain explorers when you need a machine-native, pay-per-call safety signal without API key management.

## Known failure modes

- Invalid or malformed address format returns an error
- Address on a chain other than BSC is not supported
- Network or upstream data provider unavailable causes timeout
- Payment not received (HTTP 402) blocks the request
- Empty or missing address field returns a validation error

## How this service works

The machine-native marketplace. Wallet = identity. Pay per call with HTTP 402.

## Output

A JSON object containing safety assessment results for the queried BSC address, likely including risk flags, scam indicators, blacklist status, and an overall safety classification for the given wallet or contract.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "address"
 ],
 "properties": {
  "chain": {
   "type": "string",
   "description": "Chain to check; only 'bsc' is supported on this endpoint (default)"
  },
  "address": {
   "type": "string",
   "description": "Any address (0x…) on BNB Smart Chain (BSC) — an EOA or a contract"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "risk": {
   "type": "string",
   "description": "low | medium | high | critical"
  },
  "type": {
   "type": "string",
   "description": "eoa | contract"
  },
  "flags": {
   "type": "array",
   "description": "risk flags raised"
  },
  "score": {
   "type": "number",
   "description": "0–100 structural safety score"
  },
  "address": {
   "type": "string"
  },
  "txCount": {
   "type": "number"
  },
  "contract": {
   "type": "object",
   "description": "null for an EOA; else { isToken, erc20, ownership, mintable, isProxy, implementation }"
  },
  "ethBalance": {
   "type": "string"
  },
  "usdcBalance": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bsc-address-safety-checker-4c3471e3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from true402.dev](https://www.zero.xyz/host/true402.dev/llms.txt)
