Navigate to Management → Account to manage your profile, API keys, and notification settings.
Profile
Update your display name, first name, last name, and company details. Your email address is read-only — it’s managed by your OAuth provider (Google or GitHub).
Notifications — Toggle system notifications for browser push alerts and email notifications for deployment and billing events.
Delete Account — Permanently removes your account. You’ll be asked to confirm with your email address before anything is deleted.
API Keys Tab
API keys are used to authenticate requests to the serverless inference API. Each key is scoped to your account.
Creating an API Key
Click Create API Key and give your key a name. A unique name is auto-generated (e.g. key_xxxxxx) if you leave the field blank. The full key value is shown once on creation — copy it immediately.
Managing Keys
- Show / Hide — Toggle visibility of the key value
- Copy — Copy the key to your clipboard (shows “Copied!” confirmation)
- Delete — Permanently revoke the key
Using Your API Key
Pass your API key as a bearer token in the Authorization header of every serverless inference request:
curl https://serverless.tensormesh.ai/v1/chat/completions \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model": "MiniMaxAI/MiniMax-M2.5", "messages": [{"role": "user", "content": "Hello"}]}'
The Deploy → Serverless page also pre-fills your active API key directly into the code examples for each model, so you can copy a ready-to-run request without leaving the UI.
Treat your API key like a password. Never commit it to version control or expose it in client-side code.