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

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. 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. 2

    Authenticate

    curl -X POST https://api.simbee.io/auth/token \
      -H "Content-Type: application/json" \
      -d '{"email": "you@example.com", "password": "..."}'
  3. 3

    Make API calls

    curl https://api.simbee.io/api/v1/users \
      -H "Authorization: Bearer YOUR_JWT_TOKEN"