Your API Key

enx-638ff60c0c0038c9d46524bac28d089c4b2121399a86d2f7daf1e42b00d347d7

This key is stored locally and never sent to any external server.

Usage Example

Use the API key in the Authorization header as a Bearer token:

bash
curl http://localhost:1430/v1/chat/completions \
  -H "Authorization: Bearer enx-638ff60c0c0038c9d46524bac28d089c4b2121399a86d2f7daf1e42b00d347d7" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "claude-sonnet-4",
    "messages": [{"role": "user", "content": "Hello"}]
  }'

Or set it as an environment variable:

bash
export OPENAI_API_KEY="enx-638ff60c0c0038c9d46524bac28d089c4b2121399a86d2f7daf1e42b00d347d7"
export OPENAI_BASE_URL="http://localhost:1430/v1"