# Cybercentry Ethereum Token Verification (CETV) API

> Cybercentry Ethereum Token Verification (CETV) API is a paid API for AI agents from x402-cybercentry-ethereum-token-verification.up.railway.app, paid per call via x402, $0.02/call, status down (last checked 2026-09-15).

Verifies Ethereum and EVM-compatible smart contract addresses and returns a detailed security analysis report

## Facts

- Endpoint: GET https://x402-cybercentry-ethereum-token-verification.up.railway.app/verify
- Price: $0.02/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cybercentry-ethereum-token-verification-cetv-api-d58a884f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_On5zpR0VuJUF9nynZMLnd

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 cybercentry-ethereum-token-verification-cetv-api-d58a884f
```

Example prompt: Can you run a security verification on the contract address 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 on Ethereum Mainnet (chain ID 1, platform ID 1 for Etherscan) and tell me if it's safe?

## When to prefer this

Use this endpoint when you need to verify the security and legitimacy of a specific EVM-compatible smart contract before interacting with it, investing in a token, or integrating it into a workflow. Ideal for DeFi due diligence, token vetting pipelines, or fraud detection in crypto applications. Supports multiple chains (Ethereum, BSC, Polygon, Base, etc.) via configurable chain_id and platform_id parameters.

## Known failure modes

- Invalid or malformed contract address returns an error
- Unsupported chain_id or platform_id combination returns an error
- Contract address not found on the specified chain returns a not-found response
- Network timeout or upstream blockchain API unavailability
- Missing required parameters (chain_id, contract_address, or platform_id) returns validation error

## How this service works

Verify Ethereum and EVM-compatible contract addresses using the Cybercentry Ethereum Token Verification (CETV) API. Returns a verification_report with detailed security analysis

## Output

Returns a verification_report object containing a detailed security analysis of the specified smart contract, including risk indicators, contract legitimacy signals, and other security-relevant findings for the given EVM-compatible chain and block explorer platform.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "chain_id",
  "contract_address",
  "platform_id"
 ],
 "properties": {
  "chain_id": {
   "type": "string",
   "description": "Chain ID (e.g., 1 for Mainnet, 2 for Testnet)"
  },
  "platform_id": {
   "type": "string",
   "description": "Platform ID (1=Etherscan, 2=BSCScan, 3=Polygonscan, 17=Basescan etc.)"
  },
  "contract_address": {
   "type": "string",
   "description": "Contract address to verify"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cybercentry-ethereum-token-verification-cetv-api-d58a884f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-cybercentry-ethereum-token-verification.up.railway.app](https://www.zero.xyz/host/x402-cybercentry-ethereum-token-verification.up.railway.app/llms.txt)
