Skip to main content

Get Started

To get started, sign up for our platform and create your account. You’ll need platform access and an API key to continue.

Try the Playground

For an immediate taste of our platforms’s capabilities, try the playground. The playground provides a user-friendly interface where you can test prompts and tools with our inference engine and see results without writing any code.
Hero Playground

The Subconscious Playground: A quick easy way to get started!

API Integration

Create Your API Key

First, create an API key from your dashboard. Important: API keys are only shown once for security reasons. If you’ve lost your API key, simply create a new one from the “API Keys” tab.

Using the Subconscious SDK

Our official SDKs provide the simplest way to interact with Subconscious. Install the SDK for your preferred language and start building.
from subconscious import Subconscious

# Initialize the client
client = Subconscious(api_key="YOUR_API_KEY")

# Make a simple request without tools
run = client.run(
    engine="tim-large",
    input={
        "instructions": "What's the derivative of 3x^2 * sin(x)?"
    },
    options={"await_completion": True}
)

# Print the answer
print(run.result.answer)
That’s it! You’re now ready to start building with Subconscious. Check out our SDKs or explore the API Reference for more advanced usage.