The Curriculum / Reader / 02 — Accounts
LEVEL 1 · ESSENTIALS · INDIVIDUAL TRACK

02 — Accounts

This page compiles 4 files from the repository, verbatim, in reading order. The living version: this folder on GitHub.

level-1-essentials/individual/02-accounts/README.md

02 — Accounts

Create accounts in this order. Each unlocks capabilities the next one builds on.

Files in this folder

  1. accounts-order.md — the priority list with costs and rationale
  2. api-keys-setup.md — how to provision keys for each provider
  3. password-manager-template.md — how to store credentials

The principle

Consumer subscriptions first (they give you the widest exploration surface). API keys second (they give you programmatic power). Local tools third (they give you speed).

Time budget

Definition of done

level-1-essentials/individual/02-accounts/accounts-order.md

Accounts — Priority Order

Prices are USD, monthly, as of August 2026. Confirm current pricing before subscribing.

Tier 1 — The core four (get these all)

# Service Why Approx cost
1 ChatGPT Plus (or Pro) Widest ecosystem, custom GPTs, memory, voice, Sora, most third-party integrations $20–$200/mo
2 Claude Pro (or Max) Best long-form reasoning, Projects, Artifacts, Skills, Claude Code $20–$100/mo
3 Perplexity Pro Best real-time research, Comet browser, Computer (this product), connectors $20/mo
4 Gemini Advanced Google Workspace integration, Deep Research, Veo video, longest context $20/mo

Tier 2 — Stack-dependent

# Service When you need it Approx cost
5 Microsoft Copilot Pro You live in Word/Excel/Outlook/Teams $30/mo
6 GitHub Copilot Pro+ or Cursor Pro You write code $20–$40/mo
7 Grok (X Premium+) You need real-time X data or uncensored image gen $16–$40/mo
8 Midjourney or Ideogram Serious image generation $10–$60/mo
9 ElevenLabs Serious voice/TTS work $5–$99/mo
10 Runway or Higgsfield Serious video generation $12–$95/mo

Tier 3 — API accounts (get all six, cap billing)

# Provider Best for Signup URL
1 OpenAI Platform GPT models, Whisper, DALL·E, Sora API platform.openai.com
2 Anthropic Console Claude models, longest context, best coding console.anthropic.com
3 Google AI Studio Gemini models, longest context, cheapest tier aistudio.google.com
4 Perplexity API Search-grounded generation perplexity.ai/settings/api
5 Groq Fastest inference (LLaMA, Mixtral, Qwen) console.groq.com
6 OpenRouter One key → 300+ models, easiest experimentation openrouter.ai

Tier 4 — Nice to have

Rule of thumb

If you're spending more than $150/mo on subscriptions, one of them is unused. Audit quarterly.

Enterprise upgrades

If you're using any of these for work with sensitive data, upgrade to the Enterprise / Team / Business tier for that provider. The delta buys you: - SSO / SCIM - No training on your data (with contract) - Admin console + audit logs - DPA / BAA availability - Increased context or rate limits

level-1-essentials/individual/02-accounts/api-keys-setup.md

API Keys Setup

Universal rules

  1. One key per project. Never share a key across projects; you lose cost attribution.
  2. Set a hard spending cap on every key at the provider dashboard.
  3. Set a soft email alert at 50% and 80% of cap.
  4. Store in a password manager, not in Notes.app or a text file.
  5. Never commit a key to git. Use .env.local (git-ignored) or a secret manager.
  6. Rotate every 90 days, or immediately after a suspected leak.
  7. Prefer service-specific project keys over root keys wherever the provider supports them.

Per-provider setup

OpenAI

  1. platform.openai.com → Settings → Billing → add card, set hard limit ($20 to start)
  2. API Keys → Create new secret key → name it after the project
  3. Enable usage tracking → set alert at 50% and 80%
  4. Turn on "Usage limits" per project if you use multiple projects

Anthropic

  1. console.anthropic.com → Plans & Billing → add card, set monthly budget
  2. API Keys → Create key → tag it
  3. Enable Workspace-scoped keys if you want isolation between projects
  4. Note: Anthropic bills per model; Opus is expensive, Sonnet is the workhorse, Haiku is cheap

Google AI Studio

  1. aistudio.google.com → Get API key → tied to a Google Cloud project
  2. In Google Cloud Console → Billing → set budget alert
  3. Enable Generative Language API on that project
  4. Note: Gemini has a free tier — use it for experimentation

Perplexity

  1. perplexity.ai/settings/api → Generate key
  2. Purchase credits (pay-as-you-go)
  3. Note: sonar / sonar-pro are search-grounded (unique to Perplexity)

Groq

  1. console.groq.com → API Keys → Create
  2. Free tier is generous; upgrade to pay-as-you-go for higher rate limits
  3. Use for: fastest inference of open-weight models (LLaMA 3.x, Mixtral, Qwen)

OpenRouter

  1. openrouter.ai → Keys → Create
  2. Add credits (one-time)
  3. This becomes your "try any model" playground — one key routes to 300+ models
  4. Great for experimentation and fallback

.env.local template

# AI provider keys — never commit this file
OPENAI_API_KEY=sk-proj-...
ANTHROPIC_API_KEY=sk-ant-...
GOOGLE_API_KEY=AIza...
PERPLEXITY_API_KEY=pplx-...
GROQ_API_KEY=gsk_...
OPENROUTER_API_KEY=sk-or-v1-...

# Optional
COHERE_API_KEY=
TOGETHER_API_KEY=
FIREWORKS_API_KEY=
REPLICATE_API_TOKEN=
HUGGINGFACE_TOKEN=

Add .env.local to your global .gitignore:

echo ".env.local" >> ~/.gitignore_global
git config --global core.excludesfile ~/.gitignore_global

Spending sanity floor

Start with these caps and adjust up as you learn your consumption:

Provider Starting cap
OpenAI $20/mo
Anthropic $20/mo
Google $10/mo
Perplexity $10/mo
Groq $10/mo
OpenRouter $20/mo

Total starter API budget: $90/mo. Most individuals never exceed this while learning.

level-1-essentials/individual/02-accounts/password-manager-template.md

Password Manager Template

Create one entry per provider. Recommended tool: 1Password, Bitwarden, or Dashlane.

Entry template

Title: [Provider] — [Purpose]  (e.g., "OpenAI — Personal Dev")

Username: [account email]
Password: [account password]

Custom fields:
  api_key:          sk-...
  api_key_created:  2026-08-19
  api_key_rotates:  2026-11-17
  spending_cap:     $20/mo
  billing_alert:    50% and 80%
  scope:            [personal | project-x | client-y]
  provider_url:     https://platform.openai.com
  key_management:   https://platform.openai.com/api-keys

Notes:
  - Data class allowed: [public / internal / confidential]
  - Zero-retention: [yes / no / see DPA]
  - Notes on quirks

Rotation calendar

Add these to your calendar as recurring events:

Sharing model

← 01 — Foundation 03 — System Prompts →