Abstract
TasnidChain is a knowledge verification protocol that digitizes the Islamic isnad (chain of transmission) methodology — the world's oldest systematic approach to verifying the authenticity of transmitted knowledge. By extending this 1,400-year-old framework beyond hadith science into seven knowledge domains, TasnidChain provides a universal trust-grading system (T0-T5) that evaluates claims through composite scoring of transmitter reliability, chain completeness, and cross-domain corroboration.
In an era of AI-generated content, misinformation at scale, and the erosion of epistemic trust, TasnidChain offers a structured, transparent, and auditable method for determining how much confidence to place in any given knowledge claim. The protocol is designed as API-first infrastructure, serving LLM companies, educational platforms, and researchers who require verified knowledge with full provenance.
1. Introduction
The modern information ecosystem faces a fundamental crisis of trust. Large Language Models generate plausible-sounding text without inherent knowledge of truth. Social media amplifies unverified claims at unprecedented speed. Traditional gatekeepers of knowledge — academic institutions, publishers, scholarly communities — are being bypassed by the volume and velocity of digital information.
Yet 1,400 years ago, Islamic civilization developed a rigorous solution to an analogous problem: how to verify the authenticity of prophetic traditions (hadith) transmitted across generations. The isnad system required every knowledge claim to carry its full chain of transmission — who said it, who they heard it from, and so on back to the original source. Scholars then evaluated each transmitter's reliability using a formalized science called jarh wa ta'dil (criticism and accreditation).
TasnidChain digitizes this methodology and extends it beyond hadith into a universal knowledge verification framework. Rather than creating new grading systems, we preserve and computationally implement the existing scholarly consensus — making it queryable, transparent, and accessible via modern APIs.
2. The Isnad Methodology
The Arabic word isnad (إسناد) literally means "support" or "attribution." In hadith science, it refers to the chain of narrators through whom a statement of the Prophet Muhammad (SAW) was transmitted. Each link in this chain is a human being whose character, memory, and reliability were meticulously evaluated by scholars.
2.1 Chain Structure
A complete isnad chain runs from the collector (e.g., Imam al-Bukhari) back to the original source (e.g., the Prophet SAW through a Companion). Each link specifies the transmission method used — haddathana ("he narrated to us"), akhbarana ("he informed us"), 'an ("from"), sami'tu ("I heard") — which indicates the directness and reliability of the transmission.
2.2 Narrator Evaluation
The science of jarh wa ta'dil classifies narrators on a spectrum from thiqah thabt (most reliable) to kadhdhab (known liar). Multiple scholars independently evaluate each narrator, creating a form of scholarly consensus that TasnidChain computes as a weighted trust score.
2.3 Chain Classification
Chains are classified by their continuity: muttasil (fully connected), mursal (missing the Companion), munqati' (missing one narrator), mu'dal (missing two consecutive narrators), or mu'allaq (missing from the beginning). This classification directly affects the trust score.
3. The T0-T5 Trust Grading System
TasnidChain introduces a six-tier trust grading system that maps composite scores to human-readable confidence levels. Each grade represents a specific range of the composite trust score.
Consensus Verified — established by scholarly consensus with strong, complete transmission chains and substantial corroboration.
Strongly Supported — supported by reliable transmitters with minor gaps or limited corroboration.
Moderately Supported — evidence exists but with notable gaps in transmission or limited cross-domain support.
Weakly Supported — limited evidence with significant transmission chain weaknesses.
Disputed — significant scholarly disagreement or very weak evidence.
Debunked / Fabricated — demonstrated to be false through scholarly analysis or contradicted by established evidence.
4. Composite Scoring Algorithm
The composite trust score is calculated as a weighted sum of three independent dimensions. This formula ensures that no single factor can dominate the trust assessment, while giving appropriate weight to the most critical factor — the reliability of the transmitters.
4.1 Transmitter Reliability (40%)
Each transmitter's reputation score is computed from four sub-dimensions:
- Accuracy (35%) — historical accuracy of the transmitter's claims
- Reliability (30%) — consistency and dependability over time
- Authority (20%) — recognized expertise in the relevant domain
- Transparency (15%) — openness about methodology and sources
For hadith narrators, these map to the traditional jarh wa ta'dil classifications. For modern transmitters (scientific institutions, researchers), they map to peer-review status, citation metrics, and methodological rigor.
4.2 Chain Completeness (35%)
A complete, unbroken chain of transmission scores highest. Chains with missing links, ambiguous methods, or unverified connections receive proportional penalties. The scoring function considers both chain continuity and the number of verified links.
4.3 Cross-Domain Corroboration (25%)
Claims supported by independent evidence from other knowledge domains receive a corroboration bonus. For example, a Qur'anic claim about natural phenomena that is independently confirmed by scientific observation receives corroboration from the Science domain. The strength and number of corroborating claims both factor into this score.
4.4 Implementation
// Composite Score Calculation
function computeCompositeScore(input) {
const transmitterScore = avgReputation(input.transmitters);
const chainScore = chainCompleteness(input.chain);
const corroborationScore = corroboration(input.corroborating);
return (
transmitterScore * 0.40 +
chainScore * 0.35 +
corroborationScore * 0.25
);
}
// Transmitter Reputation
function computeReputation(t) {
return (
t.accuracy * 0.35 +
t.reliability * 0.30 +
t.authority * 0.20 +
t.transparency * 0.15
);
}5. Knowledge Domains
TasnidChain supports seven knowledge domains, each with domain-specific transmitter evaluation criteria while sharing the universal T0-T5 grading system.
Qur'anic tafsir (exegesis) claims verified through classical mufassir transmission chains.
Prophetic traditions verified through the classical isnad system with jarh wa ta'dil narrator grading.
Scientific claims verified through peer-reviewed research, empirical observation, and institutional credibility.
Historical claims verified through primary source analysis and historiographical methodology.
Islamic legal rulings verified through usul al-fiqh (principles of jurisprudence) methodology.
Economic claims and Islamic finance principles verified through scholarly consensus and empirical data.
Technology and AI claims verified through peer-reviewed research, benchmarks, and institutional credibility.
6. Technical Architecture
TasnidChain is built as an API-first platform with a modern web stack designed for scalability and developer adoption.
6.1 Stack
- Frontend: Next.js 16 (App Router), React 19, TypeScript, Tailwind CSS 4
- Database: PostgreSQL with Prisma 7 ORM
- Visualization: D3.js force-directed graph for transmission network exploration
- Deployment: Railway (managed infrastructure)
- DNS: Cloudflare
6.2 Data Model
The core data model consists of 16 relational tables spanning both the classical hadith isnad system and the multi-domain T0-T5 claims system. Key entities include Narrator, Transmission, IsnadChain, Claim, Transmitter, ClaimChain, and Corroboration.
6.3 API Endpoints
GET /api/claims # List claims (filter by domain, grade)
GET /api/claims/:id # Claim detail with chains & corroborations
GET /api/narrators # Narrator registry with trust scores
GET /api/narrators/:id # Narrator detail with biography & gradings
GET /api/hadith # Hadith collection
GET /api/hadith/:id # Hadith detail with full isnad analysis
GET /api/graph # Knowledge graph (nodes + edges)
POST /api/verify # Verify a hadith by collection + number
GET /api/stats # Live platform statistics7. Use Cases
7.1 LLM Verification Layer
LLM companies can use the TasnidChain API to verify Islamic knowledge claims before presenting them to users. When an LLM generates a response about Islamic topics, it can query TasnidChain to check the trust grade and provide users with a confidence level alongside the response.
7.2 Islamic Education Platforms
Educational platforms can integrate TasnidChain to provide students with verified content. Every lesson can show the transmission chain and trust grade, teaching students not just what to know but why they can trust it.
7.3 Academic Research
Researchers studying hadith sciences, Islamic history, or comparative religion can use the graph API to explore narrator networks, identify transmission patterns, and perform quantitative analysis on scholarly consensus.
7.4 Media Fact-Checking
Media organizations covering Islamic topics can query TasnidChain to verify claims before publication, providing their audiences with evidence-based reporting backed by scholarly consensus.
8. Roadmap
Complete isnad chain digitization, narrator grading system, trust scoring engine, and verification API.
T0-T5 grading across 7 knowledge domains. Cross-domain corroboration. Transmitter reputation system.
Public API with tiered access. Developer documentation. Integration SDKs for LLM platforms.
Immutable timestamping of claim verifications. Decentralized scholar identity registry. Token-optional governance.
9. References
- Ibn Hajar al-Asqalani, Taqrib al-Tahdhib. Dar al-Asima, 1416 AH.
- Al-Dhahabi, Mizan al-I'tidal fi Naqd al-Rijal. Dar al-Ma'rifa.
- Al-Dhahabi, Siyar A'lam al-Nubala. Mu'assasat al-Risalah.
- Ibn Khaldun, Muqaddimah. Translated by Franz Rosenthal, Princeton University Press.
- Stanford Institute for Human-Centered AI, AI Index Report 2024. Stanford University.
- Brown, J., Hadith: Muhammad's Legacy in the Medieval and Modern World. Oneworld Publications, 2009.
- Dickinson, E., The Development of Early Sunnite Hadith Criticism. Brill, 2001.
Explore the Live Demo
See TasnidChain in action with real claims, transmitters, and trust scores.