Skip to main content

Account Setup

1. Create Account

Sign up for your free Mira Flows account and begin your AI development journey.

2. Get API Key

Generate your API key from the API section - you’ll need this to access Mira Flows features.

Prerequisites

Mira flows requires Python >=3.9, <=3.13
# Check your Python version
python3 --version
Need to update? Visit python.org/downloads

Installation Steps

  1. Install the SDK using pip:
pip install mira-sdk
  1. Initialize the client:
from mira_sdk import MiraClient
client = MiraClient(config={"API_KEY": "YOUR_API_KEY"})
Install python-dotenv
pip install python-dotenv
Create a .env file in your project root and add:
MIRA_API_KEY=your_api_key_here
Then initialize the client using the environment variable:
from dotenv import load_dotenv
from mira_sdk import MiraClient
import os

load_dotenv()
client = MiraClient(config={"API_KEY": os.getenv("MIRA_API_KEY")})

Next Steps

Explore Marketplace

Browse available flows to understand the platform’s capabilities and start using pre-built solutions.

Create Your First Flow

Follow our guide to build your own custom flow and unlock the full potential of Mira Flows.