Getting Started
1. Create an API Key
2. Set your environment variables
export ALPHANEURAL_API_KEY="YOUR_API_KEY"
export ALPHANEURAL_BASE_URL="https://proxy.alfnrl.io/v1"3. Make your first request (Chat Completions)
cURL Example
curl "$ALPHANEURAL_BASE_URL/chat/completions" \
-H "Authorization: Bearer $ALPHANEURAL_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "qwen3",
"messages": [{"role":"user","content":"Hello AlphaNeural"}]
}'Last updated
