# Strale Web3 Token Safety Check

> Strale Web3 Token Safety Check is a paid API for AI agents from api.strale.io, paid per call via x402, $0.0864/call, status unknown (last checked 2026-09-14).

Analyzes a Web3 token contract address for safety, risk indicators, and reputation on a given blockchain chain

## Facts

- Endpoint: POST https://api.strale.io/x402/solutions/web3-token-safety
- Price: $0.0864/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-web3-token-safety-check-75cf524f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FfAiMlxl_nKtebYmSEcD_

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 strale-web3-token-safety-check-75cf524f -d '<json body>'
```

Example prompt: Can you run a safety check on this token contract 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 on Ethereum (chain ID 1) and also check the project domain circle.com for reputation flags?

## When to prefer this

Use this endpoint when an AI agent needs to assess the safety and legitimacy of a Web3 token contract before a trade, investment, or DeFi interaction. Prefer this over generic blockchain explorers when you need a structured risk score with audit trail and optional domain reputation check in a single call.

## Known failure modes

- Invalid or malformed contract address returns 400 error
- Unsupported chain ID returns error or empty result
- Unknown contract with no on-chain data may return low-confidence score
- Project domain not found yields no reputation data
- Payment failure via x402 results in 402 response

## How this service works

Before buying a token, verify the contract isn't a scam. Checks for honeypot behavior, hidden ownership, mint functions, and verifies contract source is public. Also checks the deployer wallet for fraud history and the project's domain reputation.

## Output

Returns a structured JSON object with a safety assessment of the token contract, including risk scores, reputation indicators, potential red flags (e.g. honeypot, rug pull signals), project domain reputation data, and an audit trail of the checks performed.

## Example request

```json
{
 "chain_id": "1",
 "project_domain": "circle.com",
 "contract_address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain_id": {
   "type": "string",
   "description": "Chain ID, default 1"
  },
  "project_domain": {
   "type": "string",
   "description": "Project website domain for reputation check"
  },
  "contract_address": {
   "type": "string",
   "description": "Token contract address (0x...)"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-web3-token-safety-check-75cf524f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
