Skip to main content

Crypto Module Overview

The Crypto Intelligence module provides institutional-grade risk assessment for Web3 projects using a multi-source Trust Score algorithm.

🎯 What It Does

We answer the key question for Web3 investors: "Is this project real? Do they have money to survive? Are they actually shipping code?"

CapabilityDescription
Trust Score0-100 rating based on 6 pillars
Real-time Data5+ APIs aggregated (CoinGecko, GitHub, DefiLlama, Dropstab, ICODrops)
Blue-chip DetectionSmart scoring for mature protocols
Risk AssessmentLOW / MEDIUM / HIGH / CRITICAL ratings

🏗️ Architecture

┌─────────────────────────────────────────────────────────┐
│ CRYPTO MODULE │
│ │
│ ┌─────────────┐ ┌─────────────┐ ┌─────────────┐ │
│ │ CoinGecko │ │ GitHub │ │ DefiLlama │ │
│ │ Harvester │ │ Harvester │ │ Harvester │ │
│ │ (24h cache)│ │ (24h cache)│ │ (6h cache) │ │
│ └──────┬──────┘ └──────┬──────┘ └──────┬──────┘ │
│ │ │ │ │
│ └────────────────┼────────────────┘ │
│ ▼ │
│ ┌─────────────────────┐ │
│ │ Risk Engine │ │
│ │ (6-Pillar Score) │ │
│ └──────────┬──────────┘ │
│ ▼ │
│ ┌─────────────────────┐ │
│ │ PostgreSQL DB │ │
│ │ (crypto_projects) │ │
│ └─────────────────────┘ │
└─────────────────────────────────────────────────────────┘

📊 Data Sources

APIData CollectedCache TTLCost
CoinGeckoPrice, MCap, FDV, GitHub URL24 hoursFree
GitHubCommits (30d), Active devs, Last commit24 hoursFree
DefiLlamaTVL, Chain distribution, Category6 hoursFree

🔌 API Endpoints

Search Projects

GET /api/crypto/search?q=bitcoin&limit=10

Response:

{
"source": "database",
"results": [
{
"slug": "bitcoin",
"name": "Bitcoin",
"symbol": "BTC",
"trust_score": 85,
"risk_level": "low"
}
]
}

Get Project Details

GET /api/crypto/project/aave

Response:

{
"source": "database",
"project": {
"name": "Aave",
"symbol": "AAVE",
"trust_score": 73,
"risk_level": "medium",
"price_usd": 245.5,
"market_cap": 3650000000,
"fdv": 4100000000,
"tvl": 32295044166,
"category": "Lending",
"github_org": "aave",
"commits_last_30d": 45,
"active_devs": 12,
"score_breakdown": {
"security": 95,
"treasury": 85,
"dev_activity": 55,
"financials": 85,
"tokenomics": 80,
"community": 65
}
}
}

Refresh Data

POST /api/crypto/refresh/aave

Rate limited to prevent API abuse.

Health Check

GET /api/crypto/health

See Trust Score Algorithm for detailed scoring logic.