START IN SECONDS.
AGENT SETUP
Read and set up feihoa.com/llms.txt
Paste into your agent for automatic setup.
Doing it yourself? Good. Start here.
Connect to Qwen3.8 27B FP8 Uncensored through an OpenAI-compatible endpoint built for coding, tool use, and long agent runs. Streaming is built in. A monthly usage meter is not.
- BASE URL
https://api.feihoa.com/v1- API KEY
FEIHOA_API_KEY- MODEL
Qwen3.8-27B-Uncensored- LIMITS
- Shared across your account and included in each API response
- RETRIES
- Honor Retry-After and reuse the same Idempotency-Key after an interrupted or unavailable request
VERIFY WITH CURL
curl https://api.feihoa.com/v1/chat/completions \
-H "Authorization: Bearer $FEIHOA_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "Qwen3.8-27B-Uncensored",
"messages": [{"role": "user", "content": "Reply with FEIHOA connected."}],
"stream": true
}'