FREE API

luisAI Proxy API

Free AI chat API — wraps Groq, OpenRouter, and Cloudflare Workers AI. No API key required.

POST /api/chat

Send a chat request. Returns JSON or streaming SSE.

curl https://ollama-cloud.luishae0701.workers.dev/api/chat \
  -H "Content-Type: application/json" \
  -d '{
    "model": "groq/llama-3.3-70b-versatile",
    "messages": [{"role": "user", "content": "Hello!"}],
    "stream": false
  }'

Available Models

Loading...

Parameters

FieldTypeDescription
modelstringModel name (see list above). Default: @cf/meta/llama-3.3-70b-instruct-fp8-fast
messagesarrayChat messages [{role, content}]
streambooleanEnable SSE streaming (default: false)

Other Endpoints

POST /api/mini-ask

Knowledge-base powered Q&A with AI fallback

curl .../api/mini-ask -d '{"question":"What is quantum computing?"}'

POST /api/code-ask

Code-specific knowledge base

curl .../api/code-ask -d '{"question":"binary search","lang":"Python"}'

GET /api/tags

List all available models

Pricing

TierRate LimitModels
Free30 req/minAll models

No API key needed. Just start sending requests. Rate limits may apply.