Developer credentials
API Keys
Create, domain-lock, and manage API keys. Configure custom system prompts and generation behavior per key.
Active API Keys
All credentials associated with this workspace. Revoke any key instantly if compromised.
0 total keys
| Key Name | Prefix | Allowed Domains | AI Settings | Status | Created | Last Used | Actions |
|---|---|---|---|---|---|---|---|
| Loading API keys… | |||||||
Backend Integration Sample
Send chat traffic to your RAG endpoint programmatically using your API key.
await fetch('https://easyai.fastapicloud.dev/api/v1/chat/', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'X-API-Key': 'YOUR_PUBLIC_API_KEY'
},
body: JSON.stringify({
query: 'How do I request a refund?',
use_rag: true,
use_history: true
})
})