Build with MythicDot.AI

Everything you need to integrate AI into your applications. Powerful SDKs, comprehensive docs, and an interactive playground to get you started fast.

import MythicDot from 'mythicdot-ai'; const client = new MythicDot({ apiKey: process.env.MYTHIC_API_KEY }); const response = await client.chat({ model: "mythic-ultra", messages: [ { role: "user", content: "Hello!" } ] }); console.log(response.message);

Get Started in Minutes

1

Install the SDK

Add MythicDot.AI to your project using your preferred package manager.

npm install mythicdot-ai
2

Get Your API Key

Sign up for free and grab your API key from the dashboard.

export MYTHIC_API_KEY=sk-...
3

Make Your First Call

Start making API calls and building intelligent features.

await client.chat({ ... })

Interactive Playground

Test the API directly in your browser. No setup required.

Input
Output
Click "Run" to see the response...
Estimated tokens: 12

Official SDKs

🟨

JavaScript / TypeScript

Node.js, Deno, Bun, and browsers

v2.4.0
🐍

Python

Python 3.8+ with async support

v1.8.2
🦀

Rust

Zero-cost abstractions

v0.9.1
🐹

Go

Goroutine-friendly client

v1.2.0
💎

Ruby

Rails and Sinatra compatible

v1.1.0

Java

Java 11+ with Spring support

v1.0.3

Code Examples

Copy-paste examples to get started quickly with common use cases.

Chat Completion
import MythicDot from 'mythicdot-ai'; const client = new MythicDot({ apiKey: process.env.MYTHIC_API_KEY }); // Simple chat completion const response = await client.chat({ model: "mythic-ultra", messages: [ { role: "system", content: "You are a helpful assistant." }, { role: "user", content: "What is the capital of France?" } ], temperature: 0.7, max_tokens: 100 }); console.log(response.message.content); // Output: "The capital of France is Paris."

Developer Resources

📚

API Reference

Complete documentation of all endpoints, parameters, and response formats.

Explore API →
🎓

Tutorials

Step-by-step guides for building common use cases like chatbots and search.

View Tutorials →
💬

Discord Community

Join thousands of developers building with MythicDot.AI. Get help and share ideas.

Join Discord →
🐙

GitHub Examples

Open-source example projects and starter templates ready to clone and deploy.

Browse Examples →

Ready to Start Building?

Get your free API key and start integrating AI into your applications today.

Get API Key Free Read the Docs