Go from zero to your first AI-powered feature in just a few minutes. No prior experience required.
Sign up for a free account to get started. New accounts receive $100 in free credits — no credit card required.
Create Free Account →After signing up, navigate to your dashboard to create an API key. Keep this key secure — treat it like a password.
Store your API key in an environment variable. Never commit it to version control or expose it in client-side code.
Install our official SDK for your preferred programming language:
pip install mythicdot
Or for Node.js:
npm install mythicdot
Set up your environment variable and make your first request:
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)
You've made your first API call. You're ready to build something amazing.
Now that you're set up, explore what you can build: