O
Oxen/o1-preview

o1-preview

Ready to build with o1-preview?

Try o1-preview in the Workbench to prompt it, compare outputs, and iterate on prompts without writing any code. When you're ready to ship, call the same model from our API and build your own apps on top of it.

Sign in to grab your API key and start making requests.
bash
curl -sSf -X POST https://hub.oxen.ai/api/ai/chat/completions \
    -H "Content-Type: application/json" \
    -H "Authorization: Bearer $OXEN_API_KEY" \
    -d '{
  "model": "o1-preview",
  "messages": [
    {
      "role": "user",
      "content": "Try sending a message."
    }
  ]
}'