PATENT PENDING — NOVEL MATHEMATICAL FRAMEWORK

SIE-Score API

S = I × C

The world's first universal scarcity scoring engine. Score fraud, vulnerabilities, AI quality, credentials, assets, and any data point across any industry — in milliseconds.

Try Live Demo View API Docs
26
Industry Verticals
<50ms
Avg Latency
0
Humans Required
Scale

How It Works

Three steps. Any data. Instant scarcity intelligence.

1

Send Data

POST any transaction, vulnerability, credential, or asset data to our API endpoint

2

Score with S=I×C

Our engine computes Information (Shannon entropy) and Cost (Landauer verification) instantly

3

Act on Results

Get risk levels, recommended actions, bounty estimates, and efficiency scores in real-time

26 Industries. One Equation. A – Z.

S = I × C scores anything with information content and verification cost. Every letter of the alphabet.

A
🌾

Agriculture & Crop Intelligence

Score crop yield scarcity, seed IP novelty, and soil data verification. Predict shortages before they hit markets.

$5.1B agri-analytics market
B
🏦

Banking & Fraud Detection

Score every transaction for fraud in real-time. 9 signal inputs, instant risk classification, recommended actions. Replace expensive human review.

$18.8B annual fraud losses (Javelin)
C
🔒

Cybersecurity & Bug Bounty

Score vulnerabilities with math, not opinion. Replaces CVSS. Bounty estimates calibrated to Zerodium ($0-$2.5M).

$300B+ cybersecurity market
D
🏭

Defense & Threat Intelligence

Score threat actors, attack vectors, and intelligence reports for novelty and verification difficulty. Nation-state grade.

$150B+ global defense intelligence
E

Energy & Grid Security

Score energy supply scarcity, outage risk, and grid vulnerability. Predict blackouts before they cascade.

$2.1T global energy market
F
💰

Fintech & Payments

Real-time payment fraud scoring. Velocity analysis, geo-anomaly detection, device fingerprinting — all in <50ms.

$12.5T global payments volume
G
🎮

Gaming & Virtual Assets

Score in-game item scarcity, NFT rarity, and digital collectible verification. True mathematical rarity, not hype.

$280B gaming industry
H

Healthcare & Diagnostics

Score medical claims, treatment efficacy, diagnostic accuracy. Clinical trial novelty vs replication cost.

$3.1T data quality losses (IBM)
I
🏫

Insurance & Underwriting

Score risk with information-theoretic precision. Event surprisal as I, claim verification as C. Better than actuarial tables.

$7.1T global insurance
J

Judicial & Legal Evidence

Score evidence authenticity, witness reliability, and legal precedent novelty. Verification cost maps to litigation complexity.

$1.1T global legal services
K
🎓

Knowledge & Credentials

Score certifications, degrees, and skills for true scarcity. Pass rates, holder counts, time investment — one signal score.

$4.2B background check market
L
🚚

Logistics & Supply Chain

Score components for disruption risk. Single-source dependency, geographic concentration, substitution difficulty.

$1.6T supply chain disruptions
M

Manufacturing & QC

Score defect rarity, production anomalies, and quality verification cost. Catch the defects that matter most.

$950B manufacturing analytics
N

Natural Resources & Mining

Score mineral deposits, extraction difficulty, and geological verification cost. Real thermodynamic scarcity of physical resources.

$2.1T mining industry
O
👥

Outsourcing & Talent

Score talent scarcity in any skill domain. Combine credential rarity with market demand for true hiring signal.

$525B global HR tech
P
💊

Pharma & Drug Discovery

Score compound novelty, clinical trial replication cost, and regulatory verification burden. Faster drug scoring.

$1.6T pharmaceutical market
Q
🤖

Quality & AI Output Scoring

Score AI responses by information density vs compute cost. Lexical diversity, efficiency ratios, true value per token.

Scale AI valued at $14B — we do it 1000x cheaper
R
🏠

Real Estate & Property

Score location scarcity, zoning rarity, and property verification cost. Beyond comps — true information-theoretic value.

$3.7T global real estate
S
🔬

Scientific Research

Score papers for originality and replication cost. Citation novelty, methodology uniqueness, finding surprise factor.

$2.2B patent analytics
T
📡

Telecom & Spectrum

Score spectrum scarcity, bandwidth allocation efficiency, and network verification cost. The physics of connectivity.

$1.8T telecommunications
U
💡

Utilities & Infrastructure

Score grid capacity, water treatment, infrastructure age — verify critical systems before they fail.

$4.5T global utilities
V
📈

Venture Capital & Deals

Score startup deal scarcity: team uniqueness, market timing, tech novelty vs due diligence cost. Quantify deal quality.

$445B global VC (2025)
W
💧

Water & Environment

Score water scarcity, environmental data quality, and pollution verification cost. The most fundamental resource.

$915B water industry
X

eXchange & Crypto

Score token TRUE scarcity beyond market cap. Hash difficulty, network uniqueness, protocol novelty, mining cost.

$2.3T crypto market cap
Y
🌱

Yield & Agricultural Finance

Score crop insurance claims, yield prediction accuracy, and agricultural commodity verification.

$45B crop insurance market
Z
💣

Zero-Day & Exploit Markets

Score zero-day exploits for bounty pricing. Novelty, impact, complexity, reproduction difficulty — Zerodium-calibrated.

$2.5M max bounty (Zerodium)

Why SIE-Score vs. The Competition

SIE-Score (Kinetigor) Scale AI CVSS Manual Review
Speed <50ms per score Hours to days Minutes (manual) Hours to weeks
Cost per evaluation <$0.001 $15-25/hr human Free but slow $50-200/hr analyst
Objectivity Mathematical Human bias Subjective inputs High variance
Cross-domain Universal (10+ industries) AI data only Vulnerabilities only Domain-specific
Scalability Infinite (serverless) Limited by headcount N/A Linear with staff
Theoretical basis Shannon + Landauer Human consensus Ad hoc formula Expert opinion

The Kinetigor Equation

S = I × C

A novel mathematical framework unifying Claude Shannon's information theory (1948) with Rolf Landauer's thermodynamic cost principle (1961). No prior art exists.

S
Scarcity Score
The universal metric
I
Information
Shannon entropy / surprisal
C
Cost
Landauer verification cost

API Documentation

Endpoint

POST https://bountywarz.vercel.app/api/sie-score

Quick Start

curl -X POST https://bountywarz.vercel.app/api/sie-score \
  -H "Content-Type: application/json" \
  -H "X-Garden-Key: YOUR_API_KEY" \
  -d '{"type":"fraud_check","data":{"amount_usd":5000,"velocity":8,"geo_distance_km":8000,"device_fingerprint_match":false}}'

Authentication

All requests require an API key via the X-Garden-Key header. Get your key below.

Request Body

{
  "type": "fraud_check",    // scoring type (see below)
  "data": { ... }           // type-specific parameters
}

Scoring Types

fraud_check — Transaction Fraud Detection

Score any financial transaction for fraud risk. Returns risk level and recommended action in under 50ms.

ParameterTypeDefaultDescription
amount_usdnumber0Transaction amount in USD
velocitynumber1Transactions per hour from this source
geo_distance_kmnumber0Distance from last known location
device_fingerprint_matchbooleantrueDoes device match known profile
time_anomalybooleanfalseUnusual time for this user
merchant_risk1-103Merchant category risk level
account_age_daysnumber365Account age in days
failed_attemptsnumber0Recent failed auth attempts
cross_borderbooleanfalseInternational transaction

Response includes:

vulnerability — Security Bug Scoring

Score vulnerabilities with bounty estimation. Replaces CVSS with information-theoretic scoring calibrated to Zerodium ranges.

ParameterTypeDefaultDescription
novelty1-105How novel the attack vector is
impact1-105Damage potential
exploit_complexity1-105Exploit chain complexity
reproducibility1-105How hard to reproduce (higher = harder)
cwestring"unknown"CWE identifier

Response includes: bounty_estimate_usd ($0-$2.5M), cvss_equivalent (0-10), percentile

ai_output — AI Response Quality

Score AI model outputs by information density vs compute cost. Measure true value per dollar.

ParameterTypeDefaultDescription
modelstring"unknown"Model identifier (e.g. claude-sonnet-4-6)
tokensnumber500Token count
response_textstring""The AI response text to analyze

Response includes: efficiency (I/C ratio), lexical_diversity, total_cost_usd

credential — Certification Scarcity

Score any credential, degree, or certification for true market signal strength.

ParameterTypeDefaultDescription
credentialstring"Unknown"Credential name
years_to_earnnumber1Years to obtain
pass_rate0-10.5Exam pass rate
holders_worldwidenumber100000Total holders globally

asset — Generic Asset Scarcity

Score any asset using raw information bits and verification cost.

ParameterTypeDefaultDescription
namestring"Unknown Asset"Asset name
information_bitsnumber1Information content (Shannon bits)
verification_cost_usdnumber1Cost to verify in USD

custom — Raw S = I × C

Provide your own I and C values for direct scarcity computation.

ParameterTypeDefaultDescription
Inumber0Information value
Cnumber0Verification cost

Response Format

{
  "type": "fraud_check",
  "equation": "proprietary formula",
  "S": 0.3543,                    // Scarcity score
  "I": 0.688,                     // Information (Shannon surprisal)
  "C": 0.515,                     // Cost (Landauer verification)
  "risk_level": "HIGH",
  "recommended_action": "CHALLENGE",
  "amount_usd": 5000,
  "breakdown": {
    "I_components": { "velocity": 0.4, "geo_distance": 0.8, ... },
    "C_components": { "amount_at_risk": 0.05, "merchant_risk": 0.3, ... }
  },
  "interpretation": "HIGH — Strong fraud signals. Require additional verification."
}

Live Demo

Try the API right now

Select a scoring type and hit Score It to see real results from our live API.

Click "Score It" to see live results...

Pricing

Start free. Scale when you're ready.

Explorer

Free
  • 100 API calls / day
  • All 6 scoring types
  • Standard response time
  • Community support
  • Full API documentation
Get Free Key

Enterprise

$499/month
  • 100,000+ API calls / day
  • Custom scoring models
  • Dedicated account manager
  • SLA guarantee (99.9% uptime)
  • On-premise deployment option
  • White-label available
  • Custom industry verticals
Contact Sales