Introduction to RouteRadiant
Welcome to the future of education. RouteRadiant isn't just a learning platform—it's an entire ecosystem powered by generative AI, designed to adapt to your unique learning style.
Quick Start
Jump right in. Generate your first AI roadmap, join a community hive, and start your learning journey in under 5 minutes.
Architecture
Understand the core concepts behind our AI engine, the Skill Graph, and how specific modules interact with each other.
Why RouteRadiant?
Traditional learning is linear and static. RouteRadiant is dynamic and adaptive. We use large language models to analyze your learning style and adjust the content accordingly.
Dynamic Curriculums
No two roadmaps are the same. Content adapts to you.
Interactive Labs
Code, design, and practice directly in the browser.
Real-time Feedback
Get instant corrections and explanations from AI.
Developer API
Want to build on top of our engine? Our robust API allows access to course generation, skill assessment, and more.
import { RouteRadiantClient } from '@routeradiant/sdk';
const client = new RouteRadiantClient({
apiKey: process.env.ROUTERADIANT_KEY
});
// Generate a personalized roadmap
const roadmap = await client.generateRoadmap({
topic: 'Machine Learning',
level: 'Expert',
style: 'Project-Based'
});
console.log(roadmap.modules);© 2025 ROUTERADIANT. All rights reserved.
Learn RouteRadiant
Everything you need to master the platform.
Browse Topics
Getting Started
3 articles
Features
4 articles
Social
3 articles
Gamification
2 articles
Developer API
Build on our platform
const roadmap = await client
.generateRoadmap({
topic: 'Machine Learning'
});