LLM API

An OpenAI-compatible API serving qwen2.5-7b-instruct. Create an account, generate a key, and point any OpenAI client at https://ai.dev-fastcoo.com/v1.

Get started

1. Create an account   2. Sign in & generate a key   3. Read the API docs.

Quick example

curl https://ai.dev-fastcoo.com/v1/chat/completions \
  -H "Authorization: Bearer $YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"qwen2.5-7b-instruct","messages":[{"role":"user","content":"Hello!"}]}'