Developer credentials

API Keys

Create, domain-lock, and manage API keys. Configure custom system prompts and generation behavior per key.

Create API Key

Configure key options, prompt persona, and model parameters.

Required. Add domain origins or enter * for open access.

0.0
0.0 Factual1.0 Creative
tokens

Active API Keys

All credentials associated with this workspace. Revoke any key instantly if compromised.

0 total keys
Key NamePrefixAllowed DomainsAI SettingsStatusCreatedLast UsedActions
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
  })
})