๐Ÿš€ OPENAI-COMPATIBLE API

The Open Mind API

Access 26+ open-source AI models through a simple, OpenAI-compatible REST API. Free, no rate limits, self-hosted.

Get API Key Read Docs

Quick Start

Get up and running in under a minute. Drop-in replacement for OpenAI's API.

curl https://openmind.theeverythingai.com/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
    "model": "qwen3:8b",
    "messages": [
      {"role": "user", "content": "Hello!"}
    ]
  }'
from openai import OpenAI

client = OpenAI(
    api_key="YOUR_API_KEY",
    base_url="https://openmind.theeverythingai.com/v1"
)

response = client.chat.completions.create(
    model="qwen3:8b",
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)

print(response.choices[0].message.content)
import OpenAI from 'openai';

const client = new OpenAI({
  apiKey: 'YOUR_API_KEY',
  baseURL: 'https://openmind.theeverythingai.com/v1',
});

const response = await client.chat.completions.create({
  model: 'qwen3:8b',
  messages: [
    { role: 'user', content: 'Hello!' }
  ],
});

console.log(response.choices[0].message.content);

Available Models

26+ open-source models available. All running locally on our infrastructure.

ModelCategorySizeBest For
โšกqwen3:8bChat5.2 GBGeneral conversation, fast responses
๐Ÿ’Žgemma3:4bChat3.3 GBEfficient, Google-quality responses
๐ŸŒ€mistral:7bChat4.4 GBVersatile, high-quality text
๐Ÿฆ™llama3.1:8bChat4.9 GBMeta's most capable open model
๐Ÿ”ฌdeepseek-r1:8bReason5.2 GBComplex reasoning, step-by-step
๐Ÿ”ฌdeepseek-r1:14bReason9.0 GBAdvanced reasoning tasks
๐Ÿง qwq:32bReason19 GBDeepest reasoning capability
๐Ÿ’ปqwen2.5-coder:7bCode4.7 GBCode generation & debugging
โŒจ๏ธdeepseek-coder:6.7bCode3.8 GBSpecialized code tasks
๐Ÿ› ๏ธdevstral-small-2Code15 GBFull-stack development
๐Ÿ‘๏ธllava:7bVision4.7 GBImage understanding & OCR
๐Ÿ–ผ๏ธllama3.2-vision:11bVision7.8 GBAdvanced multimodal tasks
๐Ÿ“Šnomic-embed-textEmbed274 MBText embeddings for RAG
๐Ÿฌdolphin3Special4.9 GBUncensored assistant
๐Ÿ—ƒ๏ธsqlcoderSpecial4.1 GBNatural language to SQL

API Endpoints

OpenAI-compatible endpoints. Use your existing OpenAI code โ€” just change the base URL.

POST /v1/chat/completions Send messages and get AI responses

Request Body

{
  "model": "qwen3:8b",
  "messages": [
    {"role": "system", "content": "You are a helpful assistant."},
    {"role": "user", "content": "Explain quantum computing"}
  ],
  "temperature": 0.7,
  "max_tokens": 2048,
  "stream": false
}
GET /v1/models List all available models
GET /health Check API health status

Authentication

All API requests require a Bearer token in the Authorization header.

๐Ÿ” Bearer Token

Include your API key in every request:
Authorization: Bearer YOUR_API_KEY

โšก Rate Limits

Default: 60 requests/minute per API key. Contact admin for higher limits.

๐Ÿ“Š Usage Tracking

Every request is logged with model, tokens, and timestamp. View usage in the admin dashboard.

๐ŸŒ Base URL

All endpoints use:
https://openmind.theeverythingai.com/v1

Get Your API Key

Enter your name and email to get a free API key instantly. One key per email address.

โš ๏ธ Copy now โ€” this key will not be shown again. Click to copy.