⏱️ 5 minute setup

Getting Started

Go from zero to your first AI-powered feature in just a few minutes. No prior experience required.

Sign Up
2
Get API Key
3
Install SDK
4
First Call
1

Create Your Account

Sign up for a free account to get started. New accounts receive $100 in free credits — no credit card required.

Create Free Account →
2

Get Your API Key

After signing up, navigate to your dashboard to create an API key. Keep this key secure — treat it like a password.

sk-mythic-xxxxxxxxxxxxxxxxxxxxxxxxxxxx
🔐

Security Tip

Store your API key in an environment variable. Never commit it to version control or expose it in client-side code.

3

Install the SDK

Install our official SDK for your preferred programming language:

Terminal
pip install mythicdot

Or for Node.js:

Terminal
npm install mythicdot
4

Make Your First API Call

Set up your environment variable and make your first request:

Python
import os from mythicdot import MythicDot # Initialize client (reads MYTHIC_API_KEY from env) client = MythicDot() # Make your first request response = client.chat.completions.create( model="mythic-4-mini", messages=[ {"role": "user", "content": "Hello! What can you help me build?"} ] ) print(response.choices[0].message.content)
🎉

Congratulations!

You've made your first API call. You're ready to build something amazing.

What's Next?

Now that you're set up, explore what you can build: