Cencera LogoCENCERA
version: alpha v0.4.1
Notice: Mock data is currently being used for demonstration purposes.
Documentation

CENCERA Platform

The Universal Trust Score Layer for Web3. Real-time blockchain intelligence and threat detection.

99.7%
Trust Score Accuracy
15+
Chains Supported
2.4M+
Daily Scans
<50ms
API Latency

What is CENCERA?

CENCERA is a comprehensive blockchain security platform that provides real-time trust scoring and threat detection for wallets, tokens, and smart contracts. Our advanced AI-powered analysis engine evaluates on-chain and off-chain data to generate accurate reputation scores.

Real-time Analysis

Instant trust scores updated with every transaction

Multi-Chain Support

Coverage across Ethereum, BSC, Polygon, and more

AI-Powered Detection

Machine learning models trained on millions of transactions

Core Features

Wallet Analysis

Comprehensive wallet profiling with transaction history analysis, token holdings evaluation, and interaction patterns assessment. Get instant trust scores for any wallet address.

  • Transaction history analysis
  • Token portfolio assessment
  • Behavioral pattern detection

DEX Integration

Trust scoring for decentralized exchanges and swap protocols. Analyze liquidity pools, token pairs, and smart contract security before executing trades.

  • Protocol trust scores
  • Liquidity pool analysis
  • Slippage & fee optimization

Transaction Interceptor

Real-time threat detection that analyzes transactions before they're signed. Prevents interaction with malicious contracts and phishing sites automatically.

  • Pre-execution threat scanning
  • Malicious contract detection
  • Phishing site blocking

Real-time Monitoring

Continuous surveillance of the blockchain landscape. Track threats, monitor wallet activity, and receive instant alerts for suspicious behavior.

  • Live threat intelligence
  • Activity alerts & notifications
  • Global threat mapping

Interactive Playground

Try CENCERA Live

Experience our platform with interactive demos showcasing wallet analysis, DEX swaps, and transaction interception in action.

Wallet DemoDEX DemoInterceptor Demo
Open Playground

API Reference

POST/api/v1/wallet/analyze

Analyze a wallet address and return comprehensive trust score and risk assessment.

{
  "address": "0x742d35Cc6634C0532925a3b844Bc9e7595f4cB7",
  "chain": "ethereum",
  "includeHistory": true
}
GET/api/v1/token/score/:address

Get trust score and security analysis for any ERC-20 token contract.

// Response
{
  "trustScore": 92,
  "contractVerified": true,
  "liquidityScore": 88,
  "holderDistribution": "healthy",
  "riskLevel": "low"
}
POST/api/v1/transaction/validate

Validate a transaction before signing to detect potential threats and scams.

{
  "from": "0x...",
  "to": "0x...",
  "data": "0x...",
  "value": "1000000000000000000"
}

Quick Start

1

Get API Key

Sign up for a CENCERA account and generate your API key from the dashboard.

API_KEY=cen_xxx...
2

Install SDK

Install the CENCERA SDK using your preferred package manager.

npm install @cencera/sdk
3

Start Building

Initialize the client and start making API calls.

cencera.analyze(...)

Example Integration

import { CenceraClient } from '@cencera/sdk';

const cencera = new CenceraClient({
  apiKey: process.env.CENCERA_API_KEY
});

// Analyze a wallet
const result = await cencera.wallet.analyze({
  address: '0x742d35Cc6634C0532925a3b844Bc9e7595f4cB7',
  chain: 'ethereum'
});

console.log(`Trust Score: ${result.trustScore}`);
// Trust Score: 92

Need Help?

Join our community, explore documentation, or reach out to our support team for assistance with integration.