Simbee Documentation
Everything you need to turn user behavior into ranked feeds, smart groupings, and clean analytics — reference, recipes, and the SDKs to get there. Start with Getting Started if you're new.
Guides
Getting Started
Step-by-step tutorial covering users, signals, affinities, feed, clusters, campaigns, and analytics.
Concepts
How each primitive works independently and how they compose into different application patterns.
Authentication
Sign up, create API keys, exchange credentials for JWTs, and make authenticated requests.
Webhooks
Event catalog, payload schemas, signature verification, and delivery guarantees.
Use Case Recipes
Content recommendation, community matching, marketplace discovery, and more.
API Reference
Interactive reference for all endpoints, generated from the OpenAPI spec.
Error Codes
Standard error response format, HTTP status codes, and retry guidance.
SDKs
Use a typed client in your language of choice:
TypeScript
@simbee-io/client (npm)
Ruby
simbee-client (gem)
Python
simbee-client (pip)
Quick start
- 1
Sign up
curl -X POST https://api.simbee.io/auth/signup \ -H "Content-Type: application/json" \ -d '{"email": "you@example.com", "password": "...", "company_name": "Acme"}' - 2
Authenticate
curl -X POST https://api.simbee.io/auth/token \ -H "Content-Type: application/json" \ -d '{"email": "you@example.com", "password": "..."}' - 3
Make API calls
curl https://api.simbee.io/api/v1/users \ -H "Authorization: Bearer YOUR_JWT_TOKEN"