Credentials for Moveris Meet¶
Get the credentials you need to integrate Moveris Meet: a bot API key for your backend, and a Moveris API key for liveness analysis and webhooks.
In plain terms
Moveris Meet uses two secrets. The bot API key lets your server start and manage meeting sessions. The Moveris API key powers the liveness checks and must be the same key that owns your webhook in the Developer Portal. Moveris provisions both for your organization—keep them on the server only.
What You Need¶
Bot API key¶
sk-bot-<key> — send as Authorization: Bearer sk-bot-<key> on session and control endpoints.
One API key for analysis and webhooks
Verdict webhooks fire on the Moveris API key configured for your Meet deployment. Do not register the webhook on a different test key unless Moveris configures it that way.
Getting credentials¶
- Create or sign in to the Moveris Developer Portal.
- Request Meet access from the Moveris team — they issue your bot API key and Meet base URL, and configure the analysis API key on the service.
- Create or select a Moveris API key in the portal (if Moveris asks you to manage it) and store it securely.
- Configure a webhook on that same API key — see the Webhook Setup Guide.
How your backend uses the bot API key¶
Required for POST /api/sessions and related session routes. See Quick Start and API Reference.
Keep keys secure
- Never commit keys to version control
- Use environment variables on your server
- Never expose keys in client-side JavaScript or the interviewer link
- Rotate keys with the Moveris team when needed
Next steps¶
- Quick Start — First session in a few steps
- Integration Guide — Production backend walkthrough
- Webhook Setup Guide — Callback configuration with screenshots