Build with Pokee-Isaac
Direct API access to Pokee's reasoning model. Create a key, call it from your existing code, and go live in minutes.
Quickstart
Any OpenAI-compatible client, pointed at https://api-dev.pokee.ai/v1
curl https://api-dev.pokee.ai/v1/chat/completions \
-H "Authorization: Bearer pk-..." \
-H "Content-Type: application/json" \
-d '{
"model": "pokee-isaac",
"messages": [{"role": "user", "content": "hello"}]
}'