Skip to content

Introduction

CryptGPT

CryptGPT is a private AI chat service. No accounts, no logs, no nonsense.

Features

  • Privacy First: No PII collected. API keys only.
  • Fast Inference: GPU-accelerated with SSE streaming.
  • OpenAI Compatible: Drop-in replacement for existing tools.
  • Affordable: From free to £30/month.

Quick Start

  1. Get an API key from cryptgpt.co/pricing
  2. Make your first request:
Terminal window
curl -X POST https://cryptgpt.co/v1/chat/completions \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model": "gemma-4-26b", "messages": [{"role": "user", "content": "Hello"}]}'

Next Steps