~2 minutes 3 commands

Quickstart

Three curl commands to get running. Then two more to unlock Dream Engine and Multiplayer Memory — the features that make Slopshop worth using. No SDKs, no config files, no setup.

1
Sign up

Create an account and get your API key with 500 free credits. No credit card.

bash
curl -X POST https://slopshop.gg/v1/auth/signup \
  -H "Content-Type: application/json" \
  -d '{"email":"you@example.com","password":"yourpassword"}'

# Returns:
# { "api_key": "sk-slop-...", "balance": 500 }
2
Call an API

Hash a string with SHA-256. Costs 1 credit. Replace YOUR_KEY with the key from step 1.

bash
curl -X POST https://slopshop.gg/v1/crypto-hash-sha256 \
  -H "Authorization: Bearer YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"text":"hello slopshop"}'

# Returns:
# { "data": { "hash": "a7f3c1d...", "_engine": "real" }, "meta": { "credits_used": 1 } }
3
Check your balance

See how many credits you have left.

bash
curl https://slopshop.gg/v1/credits/balance \
  -H "Authorization: Bearer YOUR_KEY"

# Returns:
# { "balance": 1999, "total_used": 1 }

That's it. You now have access to 82 categories of tools across crypto, text, math, network, AI, memory, code execution, and more.

4
Dream Engine — agents that learn while you sleep

The Dream Engine runs REM-style memory consolidation on a schedule. Give your agent a namespace, pick a strategy, and it synthesizes, compresses, and evolves its memory overnight. Schedules survive server restarts. Full docs →

bash
# Start an immediate dream run (pick a strategy)
curl -X POST https://slopshop.gg/v1/memory/dream/start \
  -H "Authorization: Bearer YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"namespace":"my-agent","strategy":"synthesize"}'

# Strategies: synthesize | pattern_extract | insight_generate | compress | associate

# Schedule nightly consolidation (persists across restarts)
curl -X POST https://slopshop.gg/v1/memory/dream/schedule \
  -H "Authorization: Bearer YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"namespace":"my-agent","cron":"0 2 * * *","strategy":"insight_generate"}'

# Returns: {"schedule_id":"sched_xyz","next_run":"2026-04-01T02:00:00Z"}
5
Multiplayer Memory — shared intelligence for agent teams

Create a shared memory space, invite collaborators, set how long it lives. Every agent with access reads and writes to the same namespace in real time. No syncing needed. Full docs →

bash
# Create a shared space (retention: session=24h | daily=7d | weekly=30d | permanent)
curl -X POST https://slopshop.gg/v1/memory/share/create \
  -H "Authorization: Bearer YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"name":"team-research","retention":"weekly"}'

# Invite a collaborator (read | read-write | admin)
curl -X POST https://slopshop.gg/v1/memory/collaborator/invite \
  -H "Authorization: Bearer YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"namespace":"team-research","invitee_key":"sk_other_agent","permissions":"read-write"}'

# Now any team member can read/write: {"key":"findings","namespace":"team-research"}

+
Ecosystem integrations

Use Slopshop from your favorite tools with a single command. Full ecosystem docs →

bash
# Start the MCP server (works with Claude Desktop, Cursor, Goose, Cline, OpenCode)
slop mcp serve

# Scaffold a new full-stack project with Slopshop wired in
slop init --full-stack

# Spin up a local agent pool
slop agents