Developer access
API keys
Create client credentials for chatbot integrations. Your customers send chat traffic to your backend using these keys.
Create a new key
Name each key after the app or environment that will use it.
One-time secret display
Show the full secret only when it is created. Store it in your client server environment.
Create a key to reveal its secret.
Tenant API keys
Keys returned from FastAPI using your JWT session.
| Key name | Prefix | Status | Created | Last used |
|---|---|---|---|---|
| Loading API keys... | ||||
Client integration sample
Your customers can call your hosted chat endpoint with their tenant API key.
await fetch('https://your-platform.com/api/v1/chat/query', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'X-API-Key': process.env.VECTORBASE_API_KEY
},
body: JSON.stringify({
conversation_id: 'customer_123',
query: 'Where is my order?'
})
})