Getting Started
Quick Start
Sign up and run your first Sealevel query in under 5 minutes.
1. Sign in
Go to slm.dev/sign-in and sign in with GitHub or Google. Then generate an API key from the Dashboard.
2. Pick a client
Sealevel ships four clients — use whichever fits your workflow:
- Web chat — no install, fastest way to try it
- CLI — terminal chat, code generation, review, migration
- MCP server — Claude Code, Cursor, Windsurf integration
3. First query (curl)
Bash
curl https://api.sealevel.tech/v1/chat/completions \
-H "Authorization: Bearer slm_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "sealevel",
"messages": [{"role": "user", "content": "How do I derive a PDA in Anchor?"}],
"max_tokens": 512
}'