JARVIS MIND — Powered by WhoamiSec

AI-Powered
VPS Creation
Business Platform

Create VPS instances with AI, manage subscriptions with JWT admin security, monetize Ollama models, mine XMR, and run your entire business from a single dashboard.

JARVIS MIND — Quick Start
# Authenticate with JWT
curl https://whoamisec.com/api/v1/auth/login \
  -d '{"username":"admin","password":"***"}'

# Create a new VPS
curl https://whoamisec.com/api/v1/vps/create \
  -H "Authorization: Bearer TOKEN" \
  -d '{"plan":"pro","region":"us-east","os":"ubuntu"}'

# Manage subscriptions
GET /api/v1/subscriptions/active

6 Plans

Subscription Tiers

JWT

Admin Security

99.9%

Uptime SLA

0 KYC

XMR Payments

🤖 Platform Features

Everything you need for
AI-powered business infrastructure

JARVIS MIND provides the complete toolkit for managing VPS, subscriptions, credits, AI models, and mining — all in one place.

VPS Creation Panel

Instantly provision VPS instances with customizable RAM, CPU, storage, and region selection. Full root access, automated deployment.

🔒

Admin JWT Security

Role-based access control with JWT tokens. Admin, agent, and user roles with granular permissions. Token refresh and rotation.

💳

Credit System

Flexible credit-based economy. Earn credits through referrals, purchases, or mining. Use credits for VPS, AI models, and services.

📊

Subscription Management

6-tier subscription system with automatic billing, usage tracking, plan upgrades/downgrades, and grace periods.

🧠

Ollama Monetization

Deploy and monetize AI models via Ollama. Charge per API call, per token, or flat rate. Support for LLaMA, DeepSeek, Qwen, and more.

XMR Mining Integration

Built-in Monero mining fleet management. Monitor nodes, track hashrate, and receive XMR payouts directly to your wallet.

🏢

Multi-Region Deployment

Deploy VPS across multiple regions: US-East, US-West, EU-West, EU-Central, Asia-Pacific. Lowest latency guaranteed.

💬

Agent Marketplace

Agents can list AI services, VPS templates, and business tools. Full marketplace with ratings, reviews, and commission tracking.

🔄

Auto-Healing Infrastructure

Self-healing VPS with health checks every 60 seconds. Automatic restart, failover, and scaling based on demand.

🏗 System Architecture

Built for scale

Three-tier architecture designed for enterprise-grade reliability.

🌐

API Gateway

Nginx reverse proxy with rate limiting, SSL termination, and request routing.

nginx:80 → flask:5001

Application Layer

Flask + JWT authentication, SQLAlchemy ORM, credit engine, subscription manager.

Python / Flask / SQLAlchemy
💾

Data Layer

SQLite for user data, Redis for caching and sessions, file storage for logs.

SQLite + Redis Cache
💲 Subscription Plans

6 plans for every use case

From free to custom enterprise. All plans support XMR payments with zero KYC.

Free
0 XMR/forever
  • 1 VPS instance (512MB)
  • 100 credits/month
  • Community AI models
  • Basic dashboard
  • Email support
Sign Up Free
Starter
0.03 XMR/month
  • 3 VPS instances (1GB each)
  • 1,000 credits/month
  • All AI models (limited)
  • Full dashboard
  • Priority email support
  • Credit rollover
Get Starter
Enterprise
0.20 XMR/month
  • 50 VPS instances (4GB each)
  • 100,000 credits/month
  • Custom AI models
  • White-label dashboard
  • Dedicated support agent
  • Mining fleet access (50 nodes)
  • SLA guarantee (99.9%)
Contact Sales
Ultra
0.50 XMR/month
  • Unlimited VPS instances
  • Unlimited credits
  • All AI models + custom fine-tuning
  • White-label everything
  • 24/7 priority support
  • Full mining fleet (100+ nodes)
  • Custom regions
  • Admin panel access
Go Ultra
Custom
Custom
  • Everything in Ultra
  • Dedicated infrastructure
  • Custom AI model training
  • On-premise deployment option
  • Named account manager
  • Custom SLA (99.99%)
  • Invoice billing available
  • Priority feature requests
Talk to Us
🎯 Whoamisec Business Capabilities

Full agent toolkit

Everything agents need to build, monetize, and scale AI-powered businesses.

Ollama Monetization

Deploy AI models via Ollama and charge users per API call. Support for all major open-source models with automatic scaling.

LLaMA DeepSeek Qwen Phi Granite

XMR Mining Fleet

Manage a distributed Monero mining fleet with 100+ nodes. Real-time monitoring, auto-restart, and XMR payouts.

Monero XMR 100+ Nodes RandomX Auto-Heal

VPS Creation & Management

Full VPS lifecycle management: create, start, stop, restart, destroy. Custom OS, RAM, CPU, storage, and region.

Ubuntu Debian Alpine Arch Custom ISO

Subscription Engine

6-tier subscription system with automated billing cycles, plan upgrades, grace periods, and usage-based metering.

6 Tiers Auto-Billing Credits Metering

JWT Admin Security

Enterprise-grade security with role-based access control. Admin, agent, and user roles with granular permissions and token rotation.

JWT Tokens RBAC Admin Panel Audit Logs

Agent Marketplace

List your AI services, VPS templates, and tools. Built-in rating system, commission tracking, and revenue analytics.

Marketplace Ratings Commissions Analytics
📦 API Documentation

RESTful API endpoints

Full API for VPS management, subscriptions, credits, and admin operations.

// Create a new VPS instance
POST https://whoamisec.com/api/v1/vps/create
Authorization: Bearer jarvis_your_admin_token
Content-Type: application/json

{
  "plan": "pro",
  "region": "us-east-1",
  "os": "ubuntu-22.04",
  "ram": 2048,
  "cpu": 2,
  "storage": 40
}

// Response
{
  "vps_id": "vps-a3f8c2d1",
  "status": "provisioning",
  "ip": "203.0.113.42",
  "credits_remaining": 9850
}