Wiselook platform
Wiselook is an AI-conducted assessment platform. Claire — the assessment agent — runs structured conversations (text or voice) against a methodology, then produces scored, structured results asynchronously.
The platform serves three audiences:
- B2C individuals taking an assessment for themselves.
- B2B tenants — organisations whose members take assessments, with a tenant admin portal for managing methodologies, members, and branding.
- Widget visitors — end users who take an assessment embedded in a tenant's own website via the Wiselook widget.
How the platform is structured
Wiselook is a set of independent services behind a single API gateway. Each owns one domain and exposes an HTTP surface:
| Service | Owns |
|---|---|
| Catalog | Methodologies, competencies, ECOs, scoring blueprints — the assessment IP. |
| Assessment | user_evaluations — an assessment run and its scores, across B2C / B2B / widget. |
| AI Service | Claire: conducts the conversation (text + voice), owns transcripts. |
| Tenancy | B2B tenants, members, widgets, branding, invite codes, federations. |
| Identity | Canonical user accounts; the OIDC callback target. |
Everything is reached through the gateway. There are two API surfaces:
- Public (
/v1/{resource}) — what external callers reach: widget visitors (with a short-lived visitor JWT) and integrator backends (with an OAuth2 client-credentials token). - Internal (
/internal/v1/{resource}) — service-to-service only; not issuable to customer credentials.
This documentation covers the public surface. See the API Reference for the per-service endpoint detail.
Where to go next
- For Tenants — set up your organisation, invite members, embed the widget.
- For Developers — authenticate, call the API, mint visitor sessions.
- Guides — step-by-step walkthroughs for common integrations.
- API Reference — generated endpoint docs for every public service surface.