On this page

Cookbook

Practical, end-to-end walkthroughs. Each recipe starts from a blank terminal and ends with something running. Pick the one closest to your use case and adapt from there.



Before you start

All recipes share the same prerequisites:

  • A MIOSA workspace API key (msk_live_*) — see API Keys
  • Node 22+ or Python 3.11+ installed locally
  • The MIOSA SDK installed for your language:
# Python
pip install miosa

# TypeScript / Node
npm install @miosa/sdk

Set the key in your environment once — every recipe reads it from there:

export MIOSA_API_KEY="msk_live_..."

Was this helpful?