Workspace API Keys
Use this key to connect to your workspace via API. Keep it secure and rotate it on your own schedule.
Current Key
Not availableHow to Use Your API Key
Your API key gives programmatic access to your own private 4EP instance. All requests go to a single shared endpoint, and your key routes the request to your isolated instance.
Endpoint
https://4everprotocol.com/api/v1/chat/completionsAuthentication
Authorization: Bearer YOUR_API_KEYExample
curl https://4everprotocol.com/api/v1/chat/completions \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"message": "Hello 4EP"
}'Important
- Your API key routes requests to your isolated instance.
- You do not need to include a user ID, tenant name, or port.
- Treat this key like a password: do not share it or commit it to source control.