Skip to main content
Subconscious is an AI lab that makes language models dramatically more capable with our inference runtime TIMRUN and complementary post-trained TIM family of models. Our API is compatible with both the OpenAI Completions and Anthropic Messages APIs, so you can get started with our API with three lines of code with the SDK you already use.

Quick Look

from openai import OpenAI

client = OpenAI(
    api_key="your-api-key", # Step 1: add your API key
    base_url="https://api.subconscious.dev/v1", # Step 2: point to our api
)

response = client.chat.completions.create(
    model="subconscious/tim-qwen3.6-27b", # Step 3: set the model. You're all set!
    messages=[{"role": "user", "content": "What is the capital of France?"}],
)

print(response.choices[0].message.content)
To try this yourself, grab an API key on our platform.

Available Models

See Pricing for the full list of available models and current per-token rates.

Get Started

Quickstart

Make your first API call in under 5 minutes

API Reference

Full endpoint documentation

AI Readable