AI Infrastructure — Live

Anonymous AI
Infrastructure
for Everyone

Privacy-first AI platform with zero KYC. Run powerful open-source models through a scalable API, pay with Monero, and build without boundaries.

whoamisec.com — Quick Start
# Install & authenticate
curl -sL https://whoamisec.com/api/v1/auth/register \
  -d '{"username":"dev","email":"dev@mail.com","password":"securepass"}'

# Query any model
curl https://whoamisec.com/api/v1/chat \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -d '{"model":"llama3.2:1b","messages":[{"role":"user","content":"Hello!"}]}'

6+

AI Models

99.9%

Uptime SLA

0

KYC Required

<50ms

API Latency

Features

Everything you need for
private AI infrastructure

Self-hosted, self-healing, zero-trust. Built for developers who value privacy and performance.

🧠

Private AI Models

Run LLaMA, Phi, Qwen, DeepSeek, and Granite on isolated infrastructure. Your prompts never leave our servers.

🔒

Zero-KYC Payments

Pay with Monero (XMR). No identity required, no tracking, no accounts to verify. Pure anonymous access.

Enterprise API

OpenAI-compatible REST API with rate limiting, auto-scaling, comprehensive error handling, and 99.9% uptime.

💬

Open WebUI

Built-in ChatGPT-like interface for your team. Self-hosted, customizable, with model selection and history.

🔄

Multi-Model Pipeline

Automatic fallback across providers. If one model is busy, the next takes over. Zero downtime for your app.

🏢

Full Autonomy

Self-healing infrastructure with watchdog monitoring, auto-restart, and health checks every 3 minutes.

How It Works

Get started in 3 steps

No credit card. No email verification. No KYC. Just create an account and start building.

1

Create Account

Register instantly with any username. You get 100 free credits to start experimenting immediately.

2

Add Credits

Pay with Monero (XMR) for anonymous, untraceable access. No personal information needed.

3

Build

Use our REST API or WebUI to power your applications. Compatible with OpenAI SDK format.

Pricing

Simple, transparent pricing

All plans paid via Monero. No subscriptions, no lock-in. Pay as you go.

Starter
Free
  • 100 requests per day
  • 1 AI model
  • Community support
  • API access
Get Started
Enterprise
0.15 XMR/month
  • Unlimited requests
  • All models + custom
  • Dedicated support
  • SLA guarantee
  • White-label option
Contact Sales
API Documentation

OpenAI-compatible endpoints

Drop-in replacement for OpenAI API. Works with your existing SDK and tools.

POST https://whoamisec.com/api/v1/chat
Authorization: Bearer wsec_your_api_key_here
Content-Type: application/json

{
  "model": "llama3.2:1b",
  "messages": [
    {
      "role": "user",
      "content": "Explain quantum computing in simple terms"
    }
  ]
}

// Response
{
  "response": "Quantum computing uses qubits...",
  "model": "llama3.2:1b",
  "credits_remaining": 99
}